EventTransformer

kreuzberg.EventTransformer
See theEventTransformer companion trait

Attributes

Companion
trait
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type

Members list

Type members

Classlikes

case class AddEffect[I, E](effectFn: I => Effect[E]) extends EventTransformer[I, (I, Try[E])]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait EventTransformer[I, (I, Try[E])]
trait EventTransformable[(I, Try[E])]
trait EventSinkApplicationDsl[(I, Try[E])]
trait EventTransformationDsl[(I, Try[E])]
class Object
trait Matchable
class Any
Show all
case class AddState[I, S](runtimeState: RuntimeState[S]) extends EventTransformer[I, (I, S)]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait EventTransformer[I, (I, S)]
trait EventTransformable[(I, S)]
trait EventSinkApplicationDsl[(I, S)]
trait EventTransformationDsl[(I, S)]
class Object
trait Matchable
class Any
Show all
case class And[I](other: EventSink[I]) extends EventTransformer[I, I]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait EventTransformer[I, I]
class Object
trait Matchable
class Any
Show all
case class Chained[I, X, O](a: EventTransformer[I, X], b: EventTransformer[X, O]) extends EventTransformer[I, O]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait EventTransformer[I, O]
class Object
trait Matchable
class Any
Show all
case class Collect[I, O](fn: PartialFunction[I, O]) extends EventTransformer[I, O]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait EventTransformer[I, O]
class Object
trait Matchable
class Any
Show all
case class Empty[I]() extends EventTransformer[I, I]

Empty, Starting point for transformations.

Empty, Starting point for transformations.

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait EventTransformer[I, I]
class Object
trait Matchable
class Any
Show all
case class Map[I, O](fn: I => O) extends EventTransformer[I, O]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait EventTransformer[I, O]
class Object
trait Matchable
class Any
Show all
case class Tapped[I](fn: I => Unit) extends EventTransformer[I, I]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait EventTransformer[I, I]
class Object
trait Matchable
class Any
Show all
case class TryUnpack1[E](failure: EventSink[Throwable]) extends EventTransformer[Try[E], E]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait EventTransformer[Try[E], E]
class Object
trait Matchable
class Any
Show all
case class TryUnpack2[I, E](failure: EventSink[(I, Throwable)]) extends EventTransformer[(I, Try[E]), (I, E)]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait EventTransformer[(I, Try[E]), (I, E)]
trait EventTransformable[(I, E)]
trait EventSinkApplicationDsl[(I, E)]
trait EventTransformationDsl[(I, E)]
class Object
trait Matchable
class Any
Show all

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror