Is there a way to skip the current value of a `Con...
# coroutines
l
Is there a way to skip the current value of a
ConflatedBroadcastChannel
when doing
consume
or
consumeEach
? What I'm trying to do is waiting for a state change caused asynchronously by a call done just before receiving a new state from the channel using
consume
. This would be a non issue on a non conflated
BroadcastChannel
, but I'd like the channel to keep the latest value for other purposes in my code