how can we know that our suspendcancellable corout...
# coroutines
v
how can we know that our suspendcancellable coroutine is cancelled ?
z
Check the job in the context:
continuation.context[Job]
m
The continuation also has
isActive
,
isCompleted
,
isCancelled
properties.