Marc Knaup
withContext(scope1.coroutineContext) { withContext(scope2.coroutineContext) { doSomeWork() } }
val context2 = scope1.coroutineContext + SupervisorJob() withContext(scope1.coroutineContext) { withContext(context2) { doSomeWork() } }
Dominaezzz
A modern programming language that makes developers happier.