Stateless

turbolift.internals.effect.CanInterpret.Stateless
abstract class Stateless[F[_]] extends Stateless[F] with ThisInterpreter

Base class for any user-defined stateless interpreter for this effect.

Like Stateless Interpreter, but specialized for this effect.

Attributes

Graph
Supertypes
class Stateless[F]
class Flow
trait Signature
class Object
trait Matchable
class Any
Self type
ThisSignature

Members list

Concise view

Type members

Inherited types

final override type !@![A, U] = ThisControl[A, U] => Computation[F[Unknown], Ambient]

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:
Stateless
type Ambient

Free variable, meaning set of effects beyond the scope of the currently interpreted effect

Free variable, meaning set of effects beyond the scope of the currently interpreted effect

Attributes

Inherited from:
Flow
final override type Dependency = Any

Attributes

Inherited from:
Flow
final override type Result[+A] = F[A]

Attributes

Inherited from:
Stateless
final override type Stan = Void

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:
Stateless

Alias for Control, specialized for this interpreter.

Alias for Control, specialized for this interpreter.

Attributes

Inherited from:
Flow
final override type ThisEffect = 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:
ThisInterpreter

Alias for Handler, specialized for this interperter.

Alias for Handler, specialized for this interperter.

Attributes

Inherited from:
Interpreter
type Unknown

Free variable, meaning the unknown part of the continuation's answer type.

Free variable, meaning the unknown part of the continuation's answer type.

The full answer type is Result[Unknown].

Attributes

Inherited from:
Flow

Value members

Inherited methods

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

Attributes

Inherited from:
FlowFeatures
def onJoin(s1: Stan, s2: Stan): Stan

Attributes

Inherited from:
FlowFeatures
def onPure[A](a: A): F[A]

Attributes

Inherited from:
Stateless
final override def onPure[A](a: A, s: Void): F[A]

Attributes

Definition Classes
Inherited from:
Stateless
def onUnpure[A](aa: F[A]): Computation[A, ThisEffect]

Attributes

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

Attributes

Inherited from:
FlowFeatures

Creates a Handler from this interpreter.

Creates a Handler from this interpreter.

Attributes

Inherited from:
Stateless