Dias
02/08/2019, 3:31 PMgroostav
02/10/2019, 12:29 AMkotlinx.coroutines
, its best to stay away from volatile
, java.util.concurrent
et al. I also suspect you're trying to use a deferred, which is fundamentally a one-shot value type, as the facade into a running process (which it is not).var deferred
, which is having its value changed on restarts, how about you use a Channel<String>
? a ConflatedBroadcastChannel
might do what you want it to do.Dias
02/11/2019, 9:28 AM