<@U6P03BM0W> When you use `coroutineContext` you i...
# coroutines
e
@dave08 When you use
coroutineContext
you inherit the dispatcher of your parent. If your parent is using some thread pool, then the child coroutine will be run there, too. If your parent was confined to a single thread, your child will be too. In contrast,
Unconfined
is not bound to any thread. It is not dispatched for execution anywhere. It executes "right away" in whatever thread it happens to be resumed.