does anyone have an example of starting a coroutin...
# coroutines
p
does anyone have an example of starting a coroutine inside a suspendCoroutineOrReturn block?
d
why not return a job and
join
it when necessary?
p
That’s a blocking solution, I’m after a non-blocking one
Problem is for non-blocking, even if you start a new deferred, the result never seems to complete or return back
even if you move the outer coroutine’s continuation inside the completion block of the inner one