https://kotlinlang.org logo
#coroutines
Title
# coroutines
f

Florian

02/18/2021, 4:47 PM
if I call
lauch
inside a
channelFlow
, what coroutine scope is used for that
channelFlow
? The one that collects from the
channelFlow
?
l

louiscad

02/18/2021, 7:55 PM
The one of
channelFlow
that is kind of a child of the one that collects the flow.
f

Florian

02/23/2021, 7:26 AM
thank you
5 Views