Hi everyone, what is the difference channel `recei...
# coroutines
r
Hi everyone, what is the difference channel
receiveAsFlow
vs
consumeAsFlow
?
receiveAsFlow
can have multiple collectors and
consumeAsFlow
only 1?
s
Pretty much 👍.
consumeAsFlow
will close the channel if you start collecting the flow and then stop, or if the flow encounters an error. Whereas
receiveAsFlow
won't affect the channel, which means, as you say, that you can collect it more than once to receive more items.
🙏 1
1019 Views