Timur Atakishiev
02/27/2020, 8:56 AMrunBlocking {
while (true) {
someList.forEach {
launch { someFunction(it) }
}
delay(1000)
}
}
Hi guys, I got a problem, I can not test whether the someFunction is going to run in multiple coroutines, is any way how to do it?