Join Slack
Communities
Powered by
Does Kotlin have a reactive streams implementation...
# announcements
v
vaskir
09/13/2018, 4:55 PM
Does Kotlin have a reactive streams implementation (like akka streams for example)?
g
gildor
09/14/2018, 2:23 AM
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
2
Views
Open in Slack
Previous
Next