https://kotlinlang.org logo
Title
j

julienviet

08/14/2017, 10:23 AM
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

julienviet

08/14/2017, 11:54 AM
thanks!
e

elizarov

08/14/2017, 12:15 PM
👍 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

julienviet

08/14/2017, 12:33 PM
makes sense