Is there a way to check if a certain dispatcher is...
# coroutines
c
Is there a way to check if a certain dispatcher is in
CoroutineContext
?
I want to resume a coroutine with
resumeUndispatched
if it is a child of a certain dispatcher, but I'm not sure how to check if it is in the hierarchy
Found it,
coroutineContext[ContinuationInterceptor.Key]