Coroutine scope vs Supervisor scope
Apr 24, 2025 · 2 min read · Coroutine scope : default behavior (launch in coroutineScope or runBlocking). If one child fails, it cancels the entire scope — all other siblings are canceled too. Supervisor scope: failure in one child won’t cancel the other children. Coroutine...
Join discussion