<@U0MD6T132> Here what I’ve found. Using Rx Flowab...
# coroutines
e
@alucard Here what I’ve found. Using Rx Flowable with
share()
combinator is very much unlike using
ArrayBroadcastChannel
. With
share
, the producer is not even started until the first subscriber comes in. If you change to
ArrayBroadcastChannel
, then you start producing immediately.