if a `BroadcastChannel` doesn't have any subscribe...
# coroutines
b
if a
BroadcastChannel
doesn't have any subscribers, will `send`s to it suspend or be dropped?
e
See
ConflatedBroadcastChannel
b
I believe that drops items if the receivers are grabbing items slower than the producer is putting items in correct? I don't really want to lose items that way
e
Conflated does. Regular one does not drop if there are any subscribers.