I have a single thread backed dispatcher to be use...
# getting-started
s
I have a single thread backed dispatcher to be used with coroutines. Could someone tell if the submitted coroutines will execute in order of submission or if they can be executed out of order.
d
In order but will be interleaved.
s
What do you mean by interleaved? Could you give an example.
d
If a coroutine suspends, another one runs while it is suspended. Kinda like thread switching.