<@U0MD6T132> The most likely explanation is that t...
# coroutines
e
@alucard The most likely explanation is that the first coroutine you launch finishes reading all the data before the consumers are even started. Note, that
BroadcastChannel
is transmitting sent items only to consumers that were already there at the time when the
send
if invoked. You need to
open
all the subscriptions you need first, then start sending the data to the broadcast channel if you want to get it all.