Hello! Hi can i find out what dispatcher is using?
# coroutines
p
Hello! Hi can i find out what dispatcher is using?
z
coroutineContext[ContinuationInterceptor]
will give you the current dispatcher in most cases (continuation dispatchers can be other things too but rarely are in practice)
🙏 1