Jobs conceptually do not have “termination reasons...
# coroutines
e
Jobs conceptually do not have “termination reasons”. They are “fire and forget”. You are not supposed to care. You can try to infer something from their
getCancellationException
, but this is a wrong way to do it. If you need to start a coroutine and later analyze how it had completed, you should be using
async
instead of
launch
.