How can I use channels as hot observers? I want to...
# coroutines
n
How can I use channels as hot observers? I want to be able to send events to a channel regardless of anyone is listening or not. Omit events if no one is listening Bonus : The events are buffered if the consumers are consuming slower than the emitters are emitting
m
Use a MutableSharedFlow ?
☝🏼 1
☝️ 4
j
Observers aren't hot. Emitters are.
☝️ 1
n
Hot observables*