voddan
11/29/2017, 11:11 AMfun main(args: Array<String>) = runBlocking {
(0..100).forEach {
launch(coroutineContext) { // <- limit the number of concurrent threads ?
mySuspendingTask()
}
}
}
elizarov
11/29/2017, 1:32 PM