ExecutionModel

Companion:
class
trait Sum
trait Mirror
class Object
trait Matchable
class Any

Type members

Classlikes

ExecutionModel that specifies a run-loop should always do async execution of tasks, forking logical threads on each step.

ExecutionModel that specifies a run-loop should always do async execution of tasks, forking logical threads on each step.

final case class BatchedExecution(batchSize: Int) extends ExecutionModel

ExecutionModel specifying a mixed execution mode under which tasks are executed synchronously in batches up to a maximum size.

ExecutionModel specifying a mixed execution mode under which tasks are executed synchronously in batches up to a maximum size.

After a batch of tasks of the recommended size is executed, the next execution should be asynchronous, forked on a different logical thread.

By specifying the ExecutionModel.recommendedBatchSize, the configuration can be fine-tuned.

final implicit class Extensions(val self: ExecutionModel) extends AnyVal

Extension methods for ExecutionModel.

Extension methods for ExecutionModel.

ExecutionModel specifying that execution should be synchronous (immediate, trampolined) for as long as possible.

ExecutionModel specifying that execution should be synchronous (immediate, trampolined) for as long as possible.

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from:
Mirror

The name of the type

The name of the type

Inherited from:
Mirror

Value members

Concrete fields

Implicits

Implicits

final implicit def Extensions(self: ExecutionModel): Extensions

Extension methods for ExecutionModel.

Extension methods for ExecutionModel.