thats what I'm already doing. I also want some custom CoroutineInterceptor logic, that I'd like to "combine" with the dispatcher
s
streetsofboston
05/08/2023, 7:03 PM
Could you do something like this:
Copy code
class MyDispatcher(private val dispatcher: CoroutineDispatcher) : ContinuationInterceptor by dispatcher {
override fun interceptContinuation(....) ....
}