parSequenceResultN

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

Deprecated

Prefer composing parMap with result DSL

Replace with

import arrow.fx.coroutines.parMap
import arrow.core.continuations.result
import kotlinx.coroutines.Dispatchers
result<List<B>> { this.parMap(Dispatchers.Default, n) { it().bind() } }

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>>

Deprecated

Prefer composing parMap with result DSL

Replace with

import arrow.fx.coroutines.parMap
import arrow.core.continuations.result
import kotlinx.coroutines.Dispatchers
result<List<B>> { this.parMap(Dispatchers.Default, n) { it().bind() } }

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

Deprecated

Prefer composing parMap with result DSL

Replace with

import arrow.fx.coroutines.parMap
import arrow.core.continuations.result
result<List<B>> { this.parMap(ctx, n) { it().bind() } }

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.


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

Deprecated

Prefer composing parMap with result DSL

Replace with

import arrow.fx.coroutines.parMap
import arrow.core.continuations.result
result<List<B>> { this.parMap(ctx, n) { it().bind() } }