https://kotlinlang.org logo
#coroutines
Title
# coroutines
k

koufa

12/01/2017, 7:29 PM
Is it possible to create a Deadlock passing down
coroutineContext
of a parent to child coroutines?
e

elizarov

12/01/2017, 8:13 PM
Only if they mutually
join
or
await
each other. No need to pass full contexts.
Job
is enough.
3 Views