Am I correct that `.produce` immediately starts it...
# coroutines
m
Am I correct that
.produce
immediately starts its
block
even if there is no subscriber for the
ReceiveChannel
yet? If so, how can I avoid that?
o
m
That's what I thought. So I have to implement
ReceiveChannel
directly and make everything lazy up to the first call of any
ReceiveChannel
method - then dispatch to
produce
. That's kinda similar I hope 😅