reimplementing RxJava seems like an epic task
# rx
b
reimplementing RxJava seems like an epic task
e
It depends on how you approach it. Kotlin/Native will support coroutines, and using coroutines it is trivial to implement any Rx operator you need. See here for details: https://github.com/Kotlin/kotlinx.coroutines/blob/master/reactive/coroutines-guide-reactive.md Basically, all you need is to port reactive spec classes to Kotlin (trivial), port kotlinx.coroutines (will be part of coroutines support in native) and that’s it
b
thanks for the point in the right direction roman