I’m also wondering about the Dispatchers.Main being used. In experimental coroutines I was using this for network calls:
newFixedThreadPoolContext(THREAD_COUNT, “networkIO”)
with Kotlin coroutines, I believe this:
Dispatchers.IO
is mostly used for disk I/O like reading from file system or using Android Room. I think the worst case scenario for a network call would be:
Dispatchers.Main
Does anyone know if Dispatchers.IO should be used for network calls?