Hello, I have been reading about DataFlow (or wha...
# coroutines
t
Hello, I have been reading about DataFlow (or whatever it will be called). And I was wondering. Once it will be delivered, what use cases will be left for Channels?
g
DataFlow can replace only ConflatedBroadcastChannel. Other channels still very useful building block for multithreading communication (which also required for many Flow operators), but most probably you don't need channels in your public API
t
I am starting to understand. Thanks for your lights.