Parallel

turbolift.internals.interpreter.Features$.Parallel
See theParallel companion object
trait Parallel extends Default

Mixin trait for interpreters, that allow parallelism.

Attributes

Companion
object
Graph
Supertypes
trait Default
class FlowFeatures
trait Interpreter
trait Signature
class Object
trait Matchable
class Any
Show all

Members list

Type members

Inherited types

type !@![A, U]

Abstract type that must be used in definitions of effect's operations.

Abstract type that must be used in definitions of effect's operations.

Becomes an alias of Computation (i.e. same as !!), once the signature is inherited from Effect.

Attributes

Inherited from:
Signature
type Dependency

Attributes

Inherited from:
Interpreter
type Result[+A]

Attributes

Inherited from:
Interpreter
type Stan

State of this interpreter. Named Stan, to avoid confusion with State effect.

State of this interpreter. Named Stan, to avoid confusion with State effect.

Attributes

Inherited from:
FlowFeatures
type ThisEffect

Abstract type that must be used in definitions of effect's operations.

Abstract type that must be used in definitions of effect's operations.

Becomes an alias of this.type, once the signature is inherited from Effect.

Attributes

Inherited from:
Signature

Alias for Handler, specialized for this interperter.

Alias for Handler, specialized for this interperter.

Attributes

Inherited from:
Interpreter

Value members

Inherited methods

final override def onFork(s: Stan): (Stan, Stan)

Attributes

Definition Classes
HasNotForkJoin -> FlowFeatures
Inherited from:
HasNotForkJoin (hidden)
final override def onJoin(s1: Stan, s2: Stan): Stan

Attributes

Definition Classes
HasNotForkJoin -> FlowFeatures
Inherited from:
HasNotForkJoin (hidden)
def onPure[A](a: A, s: Stan): Result[A]

Attributes

Inherited from:
FlowFeatures
def onUnpure[A](aa: Result[A]): Computation[A, ThisEffect]

Attributes

Inherited from:
FlowFeatures
def onZip[A, B, C](aa: Result[A], bb: Result[B], k: (A, B) => C): Result[C]

Attributes

Inherited from:
FlowFeatures