Created
January 30, 2021 17:25
-
-
Save GauravChaddha1996/afe6f0fb7dfdcffc0e5ad8d48ee2770e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
runBlocking { | |
val scope = CoroutineScope(Dispatchers.IO) | |
val j = scope.launch { | |
println("Inside parent job") | |
delay(50) | |
val p = launch { | |
println("Inside child job") | |
delay(500) | |
println("Ending of child job") | |
} | |
p.join() | |
println("Ending of parent job") | |
} | |
// Cancelling the parent after a 50ms delay | |
delay(50) | |
j.cancelAndJoin() | |
} | |
Output: | |
Inside parent job | |
Inside child job |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment