lupajz
01/27/2020, 10:29 PMparentScope.launch { sub.consumeEach { ... } }
parentScope.launch { sub.consumeEach { ... } }
parentScope.launch(NonCancellable) { sub.consumeEach { ... } }
Now the last one job has extra NonCancellable context, am I correct to assume that the last subscriber won't closed if I would cancel the parentScope ?octylFractal
01/27/2020, 10:35 PM