I am not sure if this hasn't been already asked be...
# coroutines
l
I am not sure if this hasn't been already asked before, but can a deeply nested child coroutine call
cancel()
on the outermost parent's
Job
?
g
Only if coroutine context contains Job from top level parent job
It isn't always true, because some other closer parent could replace the job
To do that just call coroutineContext.cancel(), you can check implementation of this extension
l
Thanks, I will check it out 🙂
Works great indeed! Thanks once again 😊