Whether it matters or not would probably depend on the use case, but `Executors.newSingleThreadExecu...
e
Whether it matters or not would probably depend on the use case, but
Executors.newSingleThreadExecutor().asCoroutineDispatcher
would lose the thread sharing that the IO and Default dispatchers have (on JVM at least)
🤔 1