t

akka.stream.actor

RequestStrategy

trait RequestStrategy extends AnyRef

An ActorSubscriber defines a RequestStrategy to control the stream back pressure.

Source
ActorSubscriber.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RequestStrategy
  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. All

Abstract Value Members

  1. abstract def requestDemand(remainingRequested: Int): Int

    Invoked by the ActorSubscriber after each incoming message to determine how many more elements to request from the stream.

    Invoked by the ActorSubscriber after each incoming message to determine how many more elements to request from the stream.

    remainingRequested

    current remaining number of elements that have been requested from upstream but not received yet

    returns

    demand of more elements from the stream, returning 0 means that no more elements will be requested for now