Looking to confirm. On a `Channel` I'd use `consum...
# coroutines
s
Looking to confirm. On a
Channel
I'd use
consumeAsFlow
if and only if the Flow was guaranteed to only have a single subscriber, but I'd use
receiveAsFlow
if one or multiple subscribers were possible, right?
o
if you want the multiple subscribers to only process whichever item they happen to receive, yes. it won't send the same item to multiple subscribers