that has been cancelled? Does it throw an exception, or does it just get swallowed?
s
Sam
02/28/2022, 9:52 PM
It'll just return a cancelled Job and won't run the coroutine.
🙏 1
Sam
02/28/2022, 9:54 PM
I wouldn't say that anything gets "swallowed" really. Cancellation of coroutines is cooperative and normal. Certain things might use CancellationException to signal the cancellation, but it's really a normal way to stop the task, not an error.