:mega: :mega: :mega: `kotlinx.coroutines` 1.2.1 is here! Changelog: - Infrastructure for testing co...
v
πŸ“£ πŸ“£ πŸ“£
kotlinx.coroutines
1.2.1 is here! Changelog: β€’ Infrastructure for testing coroutine-specific code in
kotlinx-coroutines-test
(read more here https://github.com/Kotlin/kotlinx.coroutines/tree/master/kotlinx-coroutines-test#runblockingtest). Thanks Sean McQuillan for the contribution! β€’
Job.asCompletableFuture
extension in jdk8 module β€’ New operators in `Flow`:
switchMap
,
debounce
,
sample
β€’ Various fixes and improvements, full changelog: https://github.com/Kotlin/kotlinx.coroutines/releases/tag/1.2.1
πŸŽ‰ 18
πŸ‘πŸΌ 2
K 4
πŸ‘ 2
πŸ‘πŸΎ 3
⏸️ 5
❀️ 5
l
Good progress on the debounce/sample operators πŸ‘ . Now it would be nice to add some sort of
flowSubject { }
which would behave in a similar way as RxJava's
PublishSubject
so that I could asynchronously inject (or emit) items into my Flow from whenever I need πŸ™‚. Or moreover: JavaFX/TornadoFX has a lot of observables (StringProperty, ...) which could have their
.asFlow()
extension as well.