If I use the new `limitedParallelism` api like thi...
# coroutines
m
If I use the new
limitedParallelism
api like this
<http://Dispatchers.IO|Dispatchers.IO>.limitedParallelism(1)
, will the dispatcher always dispatch to the same thread?
🚫 2
n
It'll only use one thread at any given time, nothing requires that it's always the same thread.
👌 1