Is there any good explanation about how the Broadc...
# coroutines
j
Is there any good explanation about how the BroadcastChannel's buffer works? In my tests it seems like it's ignored and my receiver receives only values sent after its subscription.
w
A receiver must be subscribed in order to receive a value iirc
These are still "hot" channels
z
Except for conflated broadcast channel, which will always cache. Useful, but I always have to remind myself which does what.
👍 2