Android-CleanArchitecture-Kotlin
Android-CleanArchitecture-Kotlin copied to clipboard
Streams
I am not in a so good level in using kotlin, so maybe i am missing something, but are not we losing some capabilities by not using streams of data?
I think the message here is not "do not use rxJava" but "you may not use rxJava solely as a Promise/Future library or for handling threads". If you have use cases which resonates well with data streams I think it is still wise to use rx.
Also kotlin coroutines has great support for rx streams: Coroutines & Reactive
Yeah, zipping event streams or hiding listeners as Observable (allowing filters and etc) is still good Rx use case