Hi,
I’m facing something I don’t understand:
I’m executing two coroutines creating a scope for each one with same dispatcher but different job. The first I fire is executed but the second it is not.
Am I doing something wrong with dispatchers?
Is the dispatcher blocking the second because the first is executing at the same time?
Thanks!
a
Aleksei Tirman [JB]
07/18/2024, 4:00 PM
Can you share a code snippet?
a
Arnau Miro
07/18/2024, 4:46 PM
Instead of using Disptachers.IO I change it to use Dispatchers.Default and seems to work now.
Can it be posible that coroutine two is cancelled because Dispatchers.IO is full when executing it because logs?