parSequenceResultN

@JvmName(name = "parSequenceResultNScoped")
suspend fun <A> Iterable<suspend CoroutineScope.() -> Result<A>>.parSequenceResultN(n: Int): Result<List<A>>(source)

Traverses this Iterable and runs suspend CoroutineScope.() -> Result<A> in n parallel operations on CoroutineContext. If one or more of the tasks returns Result.failure then all the Result.failure results will be combined using addSuppressed.

Cancelling this operation cancels all running tasks.


suspend fun <A> Iterable<suspend () -> Result<A>>.parSequenceResultN(n: Int): Result<List<A>>(source)
suspend fun <A> Iterable<suspend () -> Result<A>>.parSequenceResultN(ctx: CoroutineContext = EmptyCoroutineContext, n: Int): Result<List<A>>(source)


@JvmName(name = "parSequenceResultNScoped")
suspend fun <A> Iterable<suspend CoroutineScope.() -> Result<A>>.parSequenceResultN(ctx: CoroutineContext = EmptyCoroutineContext, n: Int): Result<List<A>>(source)

Traverses this Iterable and runs suspend CoroutineScope.() -> Result<A> in n parallel operations on CoroutineContext. If one or more of the tasks returns Result.failure then all the Result.failure results will be combined using addSuppressed.

Coroutine context is inherited from a CoroutineScope, additional context elements can be specified with ctx argument. If the combined context does not have any dispatcher nor any other ContinuationInterceptor, then Dispatchers.Default is used. WARNING If the combined context has a single threaded ContinuationInterceptor, this function will not run in parallel.

Cancelling this operation cancels all running tasks.