object FlowWithContext

API MAY CHANGE

Annotations
@ApiMayChange()
Source
FlowWithContext.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FlowWithContext
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def create[In, Ctx](): FlowWithContext[In, Ctx, In, Ctx, NotUsed]
  2. def fromPairs[In, CtxIn, Out, CtxOut, Mat](under: Flow[Pair[In, CtxIn], Pair[Out, CtxOut], Mat]): FlowWithContext[In, CtxIn, Out, CtxOut, Mat]

    Creates a FlowWithContext from a regular flow that operates on Pair<data, context> elements.