Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 36 million developers.
Sign up
Popular repositories
-
kotlinx-fs
Cross-platform file API
-
android-architecture
Forked from dmytrodanylyk/android-architecture
A collection of samples to discuss and showcase different architectural tools and patterns for Android apps.
Kotlin 2
-
kotlinx.collections
Kotlin 2
-
one-nio
Forked from odnoklassniki/one-nio
Unconventional I/O library for Java
Java 1
-
kotlin
Forked from JetBrains/kotlin
The Kotlin Programming Language
Kotlin 1
-
gson
Forked from google/gson
A Java serialization/deserialization library that can convert Java Objects into JSON and back.
HTML
844 contributions in the last year
Contribution activity
May 2019
April 2019
Created a pull request in Kotlin/kotlinx.serialization that received 1 comment
- Flow performance improvements and reactive benchmarks
- Rename TimedRunnable to TimedRunnableObsolete in obsolete kotlinx.cor…
- kotlinx-coroutines-test cleanup
- Version 1.2.1
- Deprecate consumeEach on Publisher, ObservableSource and MaybeSource,…
- Fix npm publication
- Provide CoroutineScope into flowViaChannel block, but make it non-sus…
- Flow operators:
- More advanced check for self-suppression during the final exception b…
- CompletableJob.asCompletableFuture
- Infrastructure to build kotlinx.coroutines against Kotlin snapshots
- Version 1.2.0
- Update release procedure to avoid issues like #1071
- Undeprecate ReceiveChannel.isEmpty
- Flow leftovers
- Version 1.2.0 alpha-2
- Context passing between coroutines and Reactor Mono/Flux
- Select join fixed
- Fix more typos; reword some phrases; add "job:" to textual output in …
- Fix exception types for channels to ensure transparency & reporting
- Rename transform parameters for consistency with stdlib
- Fix a race in Job.join that sporadically results in normal completion
- AtomicFu version 0.12.5
- Flow operators:
- Fix atomicfu post-processing and dependencies
- Update top-level readmes with better example and js + native links
- Introduce CancellableContinuation.resume with onCancelling lambda
- Improve flowViaChannel docs
- Flow leftovers
- Package documentation for flow
Created an issue in Kotlin/kotlinx.coroutines that received 6 comments
Provide Flow operators for UI programming
There is a family of operators which are widespread in UI but which are tricky to implement (especially with current select statement):
-- switchMap
…