Do channels have a callback to know when subscribe...
# coroutines
v
Do channels have a callback to know when subscribers are added similar to livedata’s
onActive
and
onInactive
?
d
Channels don't have subscribers. You probably want to consider using `Flow`s.
1
v
Does the onActive and onInactive API exist in flow?
d
There's something very similar.
onStart
and
onComplete
I think.