Why is running coroutines sequentially different from nesting them?
This code working how expected (structured concurrency not wirking from SupervisorJob) and we will see “after delay”
Why is running coroutines sequentially different from nesting them?
This code working how expected (structured concurrency not wirking from SupervisorJob) and we will see “after delay”
Can the coroutine launched through runBlocking be executed on 2 or more threads?
I have this runBlocking code and I wanted to know if its guaranteed that coroutine launched through runBlocking will always execute on the same thread (i.e. thread on which runBlocking started executing) ?