Sudhir Singh Khanger
runBlocking { val scopeJob = Job() val scope = CoroutineScope(scopeJob) val job = scope.launch { } }
job
scopeJob
baxter
runBlocking { val scopeJob = Job() val scope = CoroutineScope(scopeJob) val job = scope.launch { } scopeJob.children.forEach { println("Child: $it") } println("job $it") }
A modern programming language that makes developers happier.