object DelayOverflowStrategy extends Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DelayOverflowStrategy
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def backpressure: DelayOverflowStrategy

    If the buffer is full when a new element is available this strategy backpressures the upstream publisher until space becomes available in the buffer.

  2. def dropBuffer: DelayOverflowStrategy

    If the buffer is full when a new element arrives, drops all the buffered elements to make space for the new element.

  3. def dropHead: DelayOverflowStrategy

    If the buffer is full when a new element arrives, drops the oldest element from the buffer to make space for the new element.

  4. def dropNew: DelayOverflowStrategy

    If the buffer is full when a new element arrives, drops the new element.

  5. def dropTail: DelayOverflowStrategy

    If the buffer is full when a new element arrives, drops the youngest element from the buffer to make space for the new element.

  6. def emitEarly: DelayOverflowStrategy

    If the buffer is full when a new element is available this strategy send next element downstream without waiting Will backpressure if downstream is not ready.

  7. def fail: DelayOverflowStrategy

    If the buffer is full when a new element is available this strategy completes the stream with failure.