I found coroutine in Kotlin 1.3 is using `DefaultS...
# server
k
I found coroutine in Kotlin 1.3 is using
DefaultScheduler
for it's default dispatcher, but it extend from the
ExperimentalCoroutineDispatcher
and not the
CommonPool
before. Is it suggested to use on online env?
e
What do you mean by “online env”?
k
Sorry, should be release environment or production environment .
e
Ah Ok. Yes. It is stable. The old name of the impl class is there for backwards compatibility.
k
Thank you.