Is there a difference between `coroutineScope.cor...
# coroutines
r
Is there a difference between
coroutineScope.coroutineContext.cancelChildren
vs
coroutineScope.cancel
They both cancels all the childrens.
d
The latter cancels itself too. So no new children allowed.
r
Yes, thanks @Dominaezzz - Should have read java doc of the function carefully!, without focusing more on it cancels all the children of the job.