trait ActionFunction[-I[_], +O[_], E] extends AnyRef

A mapping over action builders.

I

The input message type

O

The output message type

Self Type
ActionFunction[I, O, E]
Source
actionBuilder.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ActionFunction
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def flow[A]: Flow[I[A], Either[Option[E], O[A]], NotUsed]

    A flow that represents this mapping.

Concrete Value Members

  1. def andThen[O2[_]](that: ActionFunction[O, O2, E]): ActionFunction[I, O2, E]

    Chains first this function, and then another one.