Pablo
11/06/2020, 11:16 AMephemient
11/06/2020, 11:27 AMval CoroutineScope.isActive: Boolean
, is that enough for you?suspend val coroutineContext: CoroutineContext /* OR */ suspend fun currentCoroutineContext(): CoroutineContext
val CoroutineContext.job: Job
val Job.isCancelled: Boolean
Pablo
11/06/2020, 11:43 AMisActive
, but didn't know if it would do the job, I'm going to try it. But I want to check if it's called the cancel()
at some point... So that's why I'd need the verify theregildor
11/06/2020, 2:21 PM