object DelayOverflowStrategy extends Serializable
- Source
- OverflowStrategy.scala
- Alphabetic
- By Inheritance
- DelayOverflowStrategy
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- 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.
- 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.
- 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.
- def dropNew: DelayOverflowStrategy
If the buffer is full when a new element arrives, drops the new element.
- 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.
- 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.
- def fail: DelayOverflowStrategy
If the buffer is full when a new element is available this strategy completes the stream with failure.