Class BrokerState

  • All Implemented Interfaces:
    java.io.Serializable

    public class BrokerState
    extends java.lang.Object
    implements java.io.Serializable
    Class containing information on broker states.
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int BROKER_DOWN
      The broker is down.
      static int INITIALIZING
      The broker is initializing.
      static int OPERATING
      A broker has started and is operating normally.
      static int QUIESCE_COMPLETE
      The broker has finished quiescing.
      static int QUIESCE_STARTED
      The broker has started to quiesce.
      static int SHUTDOWN_STARTED
      The broker is starting to shutdown (either immediately or after a specific grace period) or restart
      static int TAKEOVER_COMPLETE
      The broker has completed the takeover another broker's message store.
      static int TAKEOVER_FAILED
      The broker has failed in the attempt to takeover another broker's message store.
      static int TAKEOVER_STARTED
      The broker has started to takeover another broker's message store.
      static int UNKNOWN
      Unknown broker state.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static java.lang.String toString​(int state)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • OPERATING

        public static final int OPERATING
        A broker has started and is operating normally.
        See Also:
        Constant Field Values
      • TAKEOVER_STARTED

        public static final int TAKEOVER_STARTED
        The broker has started to takeover another broker's message store. This applies to brokers that are part of a HA cluster.
        See Also:
        Constant Field Values
      • TAKEOVER_COMPLETE

        public static final int TAKEOVER_COMPLETE
        The broker has completed the takeover another broker's message store. This applies to brokers that are part of a HA cluster.
        See Also:
        Constant Field Values
      • TAKEOVER_FAILED

        public static final int TAKEOVER_FAILED
        The broker has failed in the attempt to takeover another broker's message store. This applies to brokers that are part of a HA cluster.
        See Also:
        Constant Field Values
      • QUIESCE_STARTED

        public static final int QUIESCE_STARTED
        The broker has started to quiesce.
        See Also:
        Constant Field Values
      • QUIESCE_COMPLETE

        public static final int QUIESCE_COMPLETE
        The broker has finished quiescing.
        See Also:
        Constant Field Values
      • SHUTDOWN_STARTED

        public static final int SHUTDOWN_STARTED
        The broker is starting to shutdown (either immediately or after a specific grace period) or restart
        See Also:
        Constant Field Values
      • INITIALIZING

        public static final int INITIALIZING
        The broker is initializing.
        See Also:
        Constant Field Values
    • Method Detail

      • toString

        public static java.lang.String toString​(int state)