shouldn't it be `coroutineScope { async(executor.a...
# coroutines
d
shouldn't it be
coroutineScope { async(executor.asCoroutineDispatcher()) { ... } }
or is there a difference?
d
coroutineScope { }
should mostly only be used to spawn multiple coroutines.
d
Because it has more overhead, I suppose, which is why you said to just use
GlobalScope
... makes sense, thanks again!