trait ActionTransformer[-I[_], +O[_], E] extends ActionFunction[I, O, E]
An ActionFunction that can't fail, but might return a different message type.
- I
The input message type
- O
The output message type
- Self Type
- ActionTransformer[I, O, E]
- Source
- actionBuilder.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ActionTransformer
- ActionFunction
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
Concrete Value Members
- def andThen[O2[_]](that: ActionTransformer[O, O2, E]): ActionTransformer[I, O2, E]
Chains first this transformer, and then another one.
Chains first this transformer, and then another one. More efficient than the base andThen function.
- def andThen[O2[_]](that: ActionFunction[O, O2, E]): ActionFunction[I, O2, E]
Chains first this function, and then another one.
Chains first this function, and then another one.
- Definition Classes
- ActionTransformer → ActionFunction
- def flow[A]: Flow[I[A], Either[Option[E], O[A]], NotUsed]
A flow that represents this mapping.
A flow that represents this mapping.
- Definition Classes
- ActionTransformer → ActionFunction