Packages

object OverflowStrategy extends Serializable

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

Value Members

  1. def backpressure: OverflowStrategy

    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: OverflowStrategy

    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: OverflowStrategy

    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: OverflowStrategy

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

  5. def dropTail: OverflowStrategy

    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 fail: OverflowStrategy

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