What would be the Beh.Relay equivalent?
# coroutines
u
What would be the Beh.Relay equivalent?
a
Copy code
private val relay = BroadcastChannel<State>(Channel.CONFLATED)
val state = relay.asFlow()
And perhaps an actor or similar to serialize mutations into the broadcast channel
u
Thanks. Btw what is this DataFlow im reading on github? replacement of conflated channel?