or does this cover that: <https://github.com/Kotli...
# coroutines
b
e
Broadcast is slightly different. Channels are hot entities, so if you
broadcast()
and then add a couple of subscribers, you can loose some elements that were sent in between invocation of
broadcast()
and
subscribe()
.
It is quite easy to write a true
tee
yourself.
b
ah, i don't think it matters in my case but good to know