Does canceling a `CoroutineWorker` using `WorkMana...
# coroutines
d
Does canceling a
CoroutineWorker
using
WorkManager
cancel the process in
doWork()
? I am using
doWork() = suspendCancellableCouroutine<Result> { }
with a firebase task within it and assigning
invokeOnCancellation
to cancel my Firebase task. Is that doing what I think it’s doing?