The name is misleading since you can’t guarantee p...
# coroutines
b
The name is misleading since you can’t guarantee parallel with that method. You would have to create your own thread pool to do so. You are only guaranteeing that
n
concurrent actors are launched
d
Default dispatcher should work?
b
That would work, but my point being
fun CoroutineScope.parallelActor
can’t actually guarantee parallel. It’s at the will of the scope’s dispatcher/interceptor
👍 1
d
Oh yes