hi guys, someone knows how to close a subscriptio...
# coroutines
v
hi guys, someone knows how to close a subscription from ConflatedBroadcastChannel properly? in my case for some unmanaged android behavior we openSubscription() many times so we’re creating a lot of those
we already tried with var compositeDisposable = Job() and canceling the job, but is just not working neither in that way
l
@vitrox1
consume
or
consumeEach
v
consumeeach
problem solved I was just having nested coroutines and then i was canceling only one of those.