Package io.camunda.zeebe.streamprocessor
Enum Class StreamProcessorMode
- All Implemented Interfaces:
Serializable,Comparable<StreamProcessorMode>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionWhen in PROCESSING mode, stream processor first replays existing events, and then switch to processing commands.When in REPLAY mode, all events are replayed and commands are never processed. -
Method Summary
Modifier and TypeMethodDescriptionstatic StreamProcessorModeReturns the enum constant of this class with the specified name.static StreamProcessorMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PROCESSING
When in PROCESSING mode, stream processor first replays existing events, and then switch to processing commands. This is the mode used by the leader. -
REPLAY
When in REPLAY mode, all events are replayed and commands are never processed. This is the mode used in followers.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-