parTraverse

suspend fun <A, B> Iterable<A>.parTraverse(f: suspend CoroutineScope.(A) -> B): List<B>(source)

Traverses this Iterable and runs all mappers f on Dispatchers.Default. Cancelling this operation cancels all running tasks.

import arrow.fx.coroutines.*

data class User(val id: Int, val createdOn: String)

suspend fun main(): Unit {
//sampleStart
suspend fun getUserById(id: Int): User =
User(id, Thread.currentThread().name)

val res = listOf(1, 2, 3)
.parTraverse { getUserById(it) }
//sampleEnd
println(res)
}

suspend fun <A, B> Iterable<A>.parTraverse(ctx: CoroutineContext = EmptyCoroutineContext, f: suspend CoroutineScope.(A) -> B): List<B>(source)

Traverses this Iterable and runs all mappers f on CoroutineContext.

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.

import arrow.fx.coroutines.*
import kotlinx.coroutines.Dispatchers

data class User(val id: Int, val createdOn: String)

suspend fun main(): Unit {
//sampleStart
suspend fun getUserById(id: Int): User =
User(id, Thread.currentThread().name)

val res = listOf(1, 2, 3)
.parTraverse(Dispatchers.IO) { getUserById(it) }
//sampleEnd
println(res)
}