before i dive too deep into it, are there any thou...
# coroutines
m
before i dive too deep into it, are there any thoughts for
kotlinx-coroutines-jdk8
library to support helpers for
Channel
that adapt it to a
Stream
?
e
You cannot adapt Channel to Stream. Stream is single-threaded and synchronous while Channel is concurrent and async. You CAN adapt Sequence to Stream and vice versa, though.
m
@elizarov that makes sense, thanks for the response