PipeSignature

beam.effects.PipeSignature
sealed trait PipeSignature[I, O] extends Signature

Attributes

Graph
Supertypes
trait Signature
class Object
trait Matchable
class Any
Known subtypes
trait PipeEffect[I, O]

Members list

Type members

Inherited types

type ThisEffect

Self-reference to the effect being described by this Signature.

Self-reference to the effect being described by this Signature.

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

Attributes

Inherited from:
Signature

Value members

Abstract methods

def exit: Computation[Nothing, ThisEffect]
def read: Computation[I | EndOfInput, ThisEffect]
def write(value: O): Computation[Unit, ThisEffect]