Enum Class MessageReceiverStatus

java.lang.Object
java.lang.Enum<MessageReceiverStatus>
de.otto.synapse.info.MessageReceiverStatus
All Implemented Interfaces:
Serializable, Comparable<MessageReceiverStatus>, Constable

public enum MessageReceiverStatus extends Enum<MessageReceiverStatus>
  • Enum Constant Details

    • STARTING

      public static final MessageReceiverStatus STARTING
      Endpoint is initializing, but not yet running.
    • STARTED

      public static final MessageReceiverStatus STARTED
      Endpoint is successfully initialized, an optional snapshot is read and all shards are known.
    • RUNNING

      public static final MessageReceiverStatus RUNNING
      Endpoint is sending/receiving messages
    • FINISHED

      public static final MessageReceiverStatus FINISHED
      Endpoint has successfully finished
    • FAILED

      public static final MessageReceiverStatus FAILED
      Endpoint has finished with errors
  • Method Details

    • values

      public static MessageReceiverStatus[] 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

      public static MessageReceiverStatus valueOf(String name)
      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 name
      NullPointerException - if the argument is null