Dmitry Motyl
09/02/2020, 11:52 AMsingleFromCoroutine
and on dispose it will be canceled ?Arkadii Ivanov
09/02/2020, 12:01 PMnmtc
version of the coroutines-interop
module.Dmitry Motyl
09/02/2020, 12:59 PMnmtc
and mt coroutines but dont receive cancelation =(
Probably I am missing somethingArkadii Ivanov
09/02/2020, 1:34 PMGlobalScope
.launch(Dispatchers.Unconfined) {
try {
onSuccess(block())
} catch (ignored: CancellationException) {
} catch (e: Throwable) {
onError(e)
}
}
.asDisposable()
So it lounches a coroutine and uses its Job for cancellation.Arkadii Ivanov
09/02/2020, 1:43 PMDmitry Motyl
09/02/2020, 2:42 PMDmitry Motyl
09/02/2020, 2:43 PM