Package de.otto.synapse.info
Enum Class MessageReceiverStatus
- All Implemented Interfaces:
Serializable,Comparable<MessageReceiverStatus>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEndpoint has finished with errorsEndpoint has successfully finishedEndpoint is sending/receiving messagesEndpoint is successfully initialized, an optional snapshot is read and all shards are known.Endpoint is initializing, but not yet running. -
Method Summary
Modifier and TypeMethodDescriptionstatic MessageReceiverStatusReturns the enum constant of this class with the specified name.static MessageReceiverStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STARTING
Endpoint is initializing, but not yet running. -
STARTED
Endpoint is successfully initialized, an optional snapshot is read and all shards are known. -
RUNNING
Endpoint is sending/receiving messages -
FINISHED
Endpoint has successfully finished -
FAILED
Endpoint has finished with errors
-
-
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
-