For `Job` there is no way to get the direct result...
# coroutines
e
For
Job
there is no way to get the direct result of its execution (being it a value or an exception) since
Job
represents “fire and forget” coroutine. You need
Deferred
(start it with
async
) which contains the whole set of functions to analyze the result of its execution.