<@U2E974ELT> I have a case where I start a corouti...
# coroutines
k
@elizarov I have a case where I start a coroutine using the
produce
builder and then launch a handful of coroutines that then consume its
ReceiveChannel
. I’d like to start these consumers as children, but I can’t launch them from within the produce builder because
channel
in
ProducerScope
is a
SendChannel
. Is there a way to either access it as
ReceiveChannel
or launch the consumer coroutines as children outside the scope of the build block?