Packages

object DelayOverflowStrategy extends Serializable

Source
OverflowStrategy.scala
Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DelayOverflowStrategy
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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

  7. def fail: DelayOverflowStrategy

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