Join Slack
Powered by
the problem here is that coroutineScope is blockin...
# coroutines
n
nerses
10/01/2018, 5:17 PM
the problem here is that coroutineScope is blocking until all the child coroutines are running, so if you run
repeat(1000) { loadAndCombine() }
they won’t run in parallel, but will wait until the loadAndCombine() returns before continuing
2
Views
Open in Slack
Previous
Next