Class StreamConstants
- java.lang.Object
-
- org.eclipse.ditto.services.utils.akka.streaming.StreamConstants
-
public final class StreamConstants extends Object
Constants used for streaming utils.
-
-
Field Summary
Fields Modifier and Type Field Description static ObjectDOES_NOT_HAVE_NEXT_MSGMessage received by stream forwarder to signal that all messages for a stream element have been sent.static ObjectFORWARDER_EXCEEDED_MAX_IDLE_TIME_MSGMessage which signals the forwarder stayed idle for too long.static ObjectSTREAM_ACK_MSGAck message fromAbstractStreamForwardertoAbstractStreamingActorfor back-pressure.static ObjectSTREAM_COMPLETEDMessage which signals that a stream has been successfully finished.static ObjectSTREAM_FAILEDMessage to signal upstream failure.static ObjectSTREAM_STARTEDMessage which signals that a stream is started.
-
-
-
Field Detail
-
STREAM_COMPLETED
public static final Object STREAM_COMPLETED
Message which signals that a stream has been successfully finished.
-
STREAM_STARTED
public static final Object STREAM_STARTED
Message which signals that a stream is started.
-
STREAM_ACK_MSG
public static final Object STREAM_ACK_MSG
Ack message fromAbstractStreamForwardertoAbstractStreamingActorfor back-pressure.
-
STREAM_FAILED
public static final Object STREAM_FAILED
Message to signal upstream failure.
-
DOES_NOT_HAVE_NEXT_MSG
public static final Object DOES_NOT_HAVE_NEXT_MSG
Message received by stream forwarder to signal that all messages for a stream element have been sent.
-
FORWARDER_EXCEEDED_MAX_IDLE_TIME_MSG
public static final Object FORWARDER_EXCEEDED_MAX_IDLE_TIME_MSG
Message which signals the forwarder stayed idle for too long.
-
-