Package akka.stream

Class DelayOverflowStrategy$

  • All Implemented Interfaces:
    java.io.Serializable

    public class DelayOverflowStrategy$
    extends java.lang.Object
    implements java.io.Serializable
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static DelayOverflowStrategy$ MODULE$
      Static reference to the singleton instance of this Scala object.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      DelayOverflowStrategy backpressure()
      If the buffer is full when a new element is available this strategy backpressures the upstream publisher until space becomes available in the buffer.
      DelayOverflowStrategy dropBuffer()
      If the buffer is full when a new element arrives, drops all the buffered elements to make space for the new element.
      DelayOverflowStrategy dropHead()
      If the buffer is full when a new element arrives, drops the oldest element from the buffer to make space for the new element.
      DelayOverflowStrategy dropNew()
      If the buffer is full when a new element arrives, drops the new element.
      DelayOverflowStrategy dropTail()
      If the buffer is full when a new element arrives, drops the youngest element from the buffer to make space for the new element.
      DelayOverflowStrategy emitEarly()
      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.
      DelayOverflowStrategy fail()
      If the buffer is full when a new element is available this strategy completes the stream with failure.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • MODULE$

        public static final DelayOverflowStrategy$ MODULE$
        Static reference to the singleton instance of this Scala object.
    • Constructor Detail

      • DelayOverflowStrategy$

        public DelayOverflowStrategy$()
    • Method Detail

      • emitEarly

        public DelayOverflowStrategy emitEarly()
        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.
      • dropHead

        public DelayOverflowStrategy dropHead()
        If the buffer is full when a new element arrives, drops the oldest element from the buffer to make space for the new element.
      • dropTail

        public DelayOverflowStrategy dropTail()
        If the buffer is full when a new element arrives, drops the youngest element from the buffer to make space for the new element.
      • dropBuffer

        public DelayOverflowStrategy dropBuffer()
        If the buffer is full when a new element arrives, drops all the buffered elements to make space for the new element.
      • dropNew

        public DelayOverflowStrategy dropNew()
        If the buffer is full when a new element arrives, drops the new element.
      • backpressure

        public DelayOverflowStrategy backpressure()
        If the buffer is full when a new element is available this strategy backpressures the upstream publisher until space becomes available in the buffer.
      • fail

        public DelayOverflowStrategy fail()
        If the buffer is full when a new element is available this strategy completes the stream with failure.