AsyncIOBuilderOps

abstract class AsyncIOBuilderOps[T[_[_]]]

Builder step that allows to choose between sequential and parallel execution and specify the effect type.

This API has the additional requirement that even sequential execution requires Async, reflecting the needs of binary renderers which might integrate with impure tools that require the use of a Dispatcher.

class Object
trait Matchable
class Any

Value members

Abstract methods

protected def build[F[_]](implicit evidence$9: Async[F], evidence$10: Batch[F]): T[F]

Concrete methods

def parallel[F[_]](implicit evidence$7: Async[F]): T[F]

Creates a builder for parallel execution.

Creates a builder for parallel execution.

This builder creates instances with a level of parallelism matching the available cores. For explicit control of parallelism use the other parallel method.

def parallel[F[_]](parallelism: Int)(implicit evidence$8: Async[F]): T[F]

Creates a builder for parallel execution.

Creates a builder for parallel execution.

This builder creates instances with the specified level of parallelism.

def sequential[F[_]](implicit evidence$6: Async[F]): T[F]

Creates a builder for sequential execution.

Creates a builder for sequential execution.