Does Kotlin have a reactive streams implementation...
# announcements
v
Does Kotlin have a reactive streams implementation (like akka streams for example)?
g
Not reactive streams. Kotlin have kotlinx.coroutines that provide abstraction for multi-thread streams, similar to Go channels (called Channels): https://github.com/Kotlin/kotlinx.coroutines/blob/master/coroutines-guide.md#channels-(experimental) Also there is work on Cold Streams abstraction that should be close to Rx but do not try to follow any Reactive Stream specs and prodably will have limited set of operators out of the box https://github.com/Kotlin/kotlinx.coroutines/issues/254