is there something with coroutines that is analogous to Subjects from RxJava?
w
is there something with coroutines that is analogous to Subjects from RxJava?
v
Coroutine channels https://kotlinlang.org/docs/reference/coroutines/channels.html I believe these are similar
BehaviourSubject=ConflatedBroadcastChannel
PublishedSubject=BroadcastChannel
1
👍 1