Packages

t

akka.stream.scaladsl

FlowWithContextOps

trait FlowWithContextOps[+Out, +Ctx, +Mat] extends AnyRef

Shared stream operations for FlowWithContext and SourceWithContext that automatically propagate a context element with each data element.

Annotations
@ccompatUsedUntil213()
Source
FlowWithContextOps.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FlowWithContextOps
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. type Repr[+O, +C] = ReprMat[O, C, Mat]
  2. abstract type ReprMat[+O, +C, +M] <: FlowWithContextOps[O, C, M] { type ReprMat[+OO, +CC, +MatMat] = FlowWithContextOps.this.ReprMat[OO,CC,MatMat] }

Abstract Value Members

  1. abstract def unsafeDataVia[Out2, Mat2](viaFlow: Graph[FlowShape[Out, Out2], Mat2]): Repr[Out2, Ctx]

    Transform this flow by the regular flow.

    Transform this flow by the regular flow. The given flow works on the data portion of the stream and ignores the context.

    The given flow *must* not re-order, drop or emit multiple elements for one incoming element, the sequence of incoming contexts is re-combined with the outgoing elements of the stream. If a flow not fulfilling this requirement is used the stream will not fail but continue running in a corrupt state and re-combine incorrect pairs of elements and contexts or deadlock.

    For more background on these requirements see https://doc.akka.io/libraries/akka-core/current/stream/stream-context.html.

    Annotations
    @ApiMayChange()
  2. abstract def via[Out2, Ctx2, Mat2](flow: Graph[FlowShape[(Out, Ctx), (Out2, Ctx2)], Mat2]): Repr[Out2, Ctx2]

    Transform this flow by the regular flow.

    Transform this flow by the regular flow. The given flow must support manual context propagation by taking and producing tuples of (data, context).

    It is up to the implementer to ensure the inner flow does not exhibit any behaviour that is not expected by the downstream elements, such as reordering. For more background on these requirements see https://doc.akka.io/libraries/akka-core/current/stream/stream-context.html.

    This can be used as an escape hatch for operations that are not (yet) provided with automatic context propagation here.

    See also

    akka.stream.scaladsl.FlowOps.via

  3. abstract def viaMat[Out2, Ctx2, Mat2, Mat3](flow: Graph[FlowShape[(Out, Ctx), (Out2, Ctx2)], Mat2])(combine: (Mat, Mat2) => Mat3): ReprMat[Out2, Ctx2, Mat3]

    Transform this flow by the regular flow.

    Transform this flow by the regular flow. The given flow must support manual context propagation by taking and producing tuples of (data, context).

    It is up to the implementer to ensure the inner flow does not exhibit any behaviour that is not expected by the downstream elements, such as reordering. For more background on these requirements see https://doc.akka.io/libraries/akka-core/current/stream/stream-context.html.

    This can be used as an escape hatch for operations that are not (yet) provided with automatic context propagation here.

    The combine function is used to compose the materialized values of this flow and that flow into the materialized value of the resulting Flow.

    See also

    akka.stream.scaladsl.FlowOpsMat.viaMat

Concrete Value Members

  1. def collect[Out2](f: PartialFunction[Out, Out2]): Repr[Out2, Ctx]

    Context-preserving variant of akka.stream.scaladsl.FlowOps.collect.

    Context-preserving variant of akka.stream.scaladsl.FlowOps.collect.

    Note, that the context of elements that are filtered out is skipped as well.

    See also

    akka.stream.scaladsl.FlowOps.collect

  2. def filter(pred: (Out) => Boolean): Repr[Out, Ctx]

    Context-preserving variant of akka.stream.scaladsl.FlowOps.filter.

    Context-preserving variant of akka.stream.scaladsl.FlowOps.filter.

    Note, that the context of elements that are filtered out is skipped as well.

    See also

    akka.stream.scaladsl.FlowOps.filter

  3. def filterNot(pred: (Out) => Boolean): Repr[Out, Ctx]

    Context-preserving variant of akka.stream.scaladsl.FlowOps.filterNot.

    Context-preserving variant of akka.stream.scaladsl.FlowOps.filterNot.

    Note, that the context of elements that are filtered out is skipped as well.

    See also

    akka.stream.scaladsl.FlowOps.filterNot

  4. def grouped(n: Int): Repr[Seq[Out], Seq[Ctx]]

    Context-preserving variant of akka.stream.scaladsl.FlowOps.grouped.

    Context-preserving variant of akka.stream.scaladsl.FlowOps.grouped.

    Each output group will be associated with a Seq of corresponding context elements.

    See also

    akka.stream.scaladsl.FlowOps.grouped

  5. def log(name: String, extract: (Out) => Any = ConstantFun.scalaIdentityFunction)(implicit log: LoggingAdapter = null): Repr[Out, Ctx]

    Context-preserving variant of akka.stream.scaladsl.FlowOps.log.

  6. def logWithMarker(name: String, marker: (Out, Ctx) => LogMarker, extract: (Out) => Any = ConstantFun.scalaIdentityFunction)(implicit log: MarkerLoggingAdapter = null): Repr[Out, Ctx]

    Context-preserving variant of akka.stream.scaladsl.FlowOps.logWithMarker.

  7. def map[Out2](f: (Out) => Out2): Repr[Out2, Ctx]

    Context-preserving variant of akka.stream.scaladsl.FlowOps.map.

  8. def mapAsync[Out2](parallelism: Int)(f: (Out) => Future[Out2]): Repr[Out2, Ctx]

    Context-preserving variant of akka.stream.scaladsl.FlowOps.mapAsync.

  9. def mapConcat[Out2](f: (Out) => IterableOnce[Out2]): Repr[Out2, Ctx]

    Context-preserving variant of akka.stream.scaladsl.FlowOps.mapConcat.

    Context-preserving variant of akka.stream.scaladsl.FlowOps.mapConcat.

    The context of the input element will be associated with each of the output elements calculated from this input element.

    Example:

    def dup(element: String) = Seq(element, element)

    Input:

    ("a", 1) ("b", 2)

    inputElements.mapConcat(dup)

    Output:

    ("a", 1) ("a", 1) ("b", 2) ("b", 2)

    See also

    akka.stream.scaladsl.FlowOps.mapConcat

  10. def mapContext[Ctx2](f: (Ctx) => Ctx2): Repr[Out, Ctx2]

    Apply the given function to each context element (leaving the data elements unchanged).

  11. def mapError(pf: PartialFunction[Throwable, Throwable]): Repr[Out, Ctx]

    Context-preserving variant of akka.stream.scaladsl.FlowOps.mapError.

  12. def sliding(n: Int, step: Int = 1): Repr[Seq[Out], Seq[Ctx]]

    Context-preserving variant of akka.stream.scaladsl.FlowOps.sliding.

    Context-preserving variant of akka.stream.scaladsl.FlowOps.sliding.

    Each output group will be associated with a Seq of corresponding context elements.

    See also

    akka.stream.scaladsl.FlowOps.sliding

  13. def throttle(cost: Int, per: FiniteDuration, maximumBurst: Int, costCalculation: (Out) => Int, mode: ThrottleMode): Repr[Out, Ctx]

    Context-preserving variant of akka.stream.scaladsl.FlowOps.throttle.

  14. def throttle(cost: Int, per: FiniteDuration, costCalculation: (Out) => Int): Repr[Out, Ctx]

    Context-preserving variant of akka.stream.scaladsl.FlowOps.throttle.

  15. def throttle(elements: Int, per: FiniteDuration, maximumBurst: Int, mode: ThrottleMode): Repr[Out, Ctx]

    Context-preserving variant of akka.stream.scaladsl.FlowOps.throttle.

  16. def throttle(elements: Int, per: FiniteDuration): Repr[Out, Ctx]

    Context-preserving variant of akka.stream.scaladsl.FlowOps.throttle.