has anyone published an article or sample project...
# coroutines
m
has anyone published an article or sample project regarding RxJava/Kotlin alternative when using Coroutine? or maybe a reference to start migrating rxjava/kotlin to kotlin coroutine e.g (here’s our current summary so far, and need suggestion or best practices): 1.
Observable
->
Flow
2. `Completable`/`Single` / `Completable.defer`/`Single.defer`->
suspend fun
/
Deferred
? 3.
PublishSubject
->
BroadcastChannel
? 4.
Observable.merge
,
Observable.compose
,
Observable.mergeWith
->
Flow.zip
,
Job.join
, x? 5.
ObservableTransformer
, `-> ? 6.
Flowable.just
->
flowOf
? 7.
Flowable.flatMapPublisher
->
Flow.map
the above usecase we found from below references: 1. https://www.slideshare.net/manuelvicnt/coroutines-and-rxjava-an-asynchronicity-comparison 2. https://viseon.ch/blogs/convertRxToCoroutine/index.html 3. https://github.com/epam/CoroutinesExtensions 4. https://github.com/sys1yagi/implementation-of-async-request-with-rxjava2-or-coroutine