Is a `BroadcastChannel(BUFFERED)` still the best r...
# coroutines
d
Is a
BroadcastChannel(BUFFERED)
still the best replacement for PublishSubject?
b
Yes, another option is to use SharedFlow from 1.4.0-M1
t
sourceFlow.shareIn(coroutineScope, SharingStarted.EAGERLY)
should be closest replacement to `PublishSubject`: - no replayed value - starts emitting as soon as created