I can’t find much documentation on coroutine cance...
# coroutines
j
I can’t find much documentation on coroutine cancellation, at least I don’t find anything in the coroutine KEEP, is there anything that documents it ?
👍 1
j
thanks!
e
👍 It is not part of the spec. It is a feature of
kotlinx.coroutines
library, with
Job
interface being the key enabler of cancellation.
👍 3
j
makes sense