Matt
01/31/2020, 5:03 AMoctylFractal
01/31/2020, 5:05 AMMatt
01/31/2020, 5:07 AMprivate suspend fun parseLeaves(leaves: List<Leaf>){
coroutineScope {
// launches all leaves into seperate coroutines to be dealt with as they can
leaves.forEach { launch { analyzeBlock(it) } }
}
}
Is how Im launching my coroutinesoctylFractal
01/31/2020, 5:08 AMMatt
01/31/2020, 5:08 AMMatt
01/31/2020, 5:10 AM