parallelTriple

suspend fun <R1, R2, R3> parallelTriple(op1: suspend () -> R1, op2: suspend () -> R2, op3: suspend () -> R3): Triple<R1, R2, R3>

Execute three operations in parallel and return their results as a Triple.

Return

Triple containing results from all operations

Parameters

op1

First operation

op2

Second operation

op3

Third operation