maybe <@U2E974ELT> knows more. but i guess you co...
# coroutines
s
maybe @elizarov knows more. but i guess you could do something like this:
Copy code
kotlin
future {
       val f1 = startLongAsyncOperation(3);
       val f2 = startLongAsyncOperation(9);
       val f3 = startLongAsyncOperation(4);
        all { 
          listOf ( async {println(f1.await()) },
           async {println(f2.await())},
           async { println(f3.await())} 
       }
    }.get()