public enum MessageReceiverStatus extends java.lang.Enum<MessageReceiverStatus>
| Enum Constant and Description |
|---|
FAILED
Endpoint has finished with errors
|
FINISHED
Endpoint has successfully finished
|
RUNNING
Endpoint is sending/receiving messages
|
STARTED
Endpoint is successfully initialized, an optional snapshot is read and all shards are known.
|
STARTING
Endpoint is initializing, but not yet running.
|
| Modifier and Type | Method and Description |
|---|---|
static MessageReceiverStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageReceiverStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageReceiverStatus STARTING
public static final MessageReceiverStatus STARTED
public static final MessageReceiverStatus RUNNING
public static final MessageReceiverStatus FINISHED
public static final MessageReceiverStatus FAILED
public static MessageReceiverStatus[] values()
for (MessageReceiverStatus c : MessageReceiverStatus.values()) System.out.println(c);
public static MessageReceiverStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null