Sequential

turbolift.internals.interpreter.Features$.Sequential

Mixin trait for interpreters, that prohibit parallelism.

Attributes

Graph
Supertypes
trait Signature
class Object
trait Matchable
class Any

Members list

Concise view

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

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

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
final override def onUnpure[A](aa: Result[A]): Computation[A, ThisEffect]

Attributes

Definition Classes
HasNotUnpure -> FlowFeatures
Inherited from:
HasNotUnpure (hidden)
final override def onZip[A, B, C](aa: Result[A], bb: Result[B], k: (A, B) => C): Result[C]

Attributes

Definition Classes
HasNotZip -> FlowFeatures
Inherited from:
HasNotZip (hidden)