Does `Flow<T>` support multicasting yet?
# coroutines
z
Does
Flow<T>
support multicasting yet?
d
Flow is cold api, therefore it never will
But you can consume it with a broadcast channel if you want to do that
There might be a toBroadcastChannel function
But if there isn't it's simple to make your own
g
Nope, most probably it will be available https://github.com/Kotlin/kotlinx.coroutines/issues/1261
Also, there is also PR with essentially hot Flow: DataFlow