Enum Class ConnectionEventType

java.lang.Object
java.lang.Enum<ConnectionEventType>
com.lucimber.dbus.connection.ConnectionEventType
All Implemented Interfaces:
Serializable, Comparable<ConnectionEventType>, Constable

public enum ConnectionEventType extends Enum<ConnectionEventType>
Types of connection events that can be fired during the connection lifecycle.
  • Enum Constant Details

    • STATE_CHANGED

      public static final ConnectionEventType STATE_CHANGED
      Connection state has changed (e.g., from CONNECTING to CONNECTED).
    • HEALTH_CHECK_SUCCESS

      public static final ConnectionEventType HEALTH_CHECK_SUCCESS
      A health check (ping/heartbeat) has succeeded.
    • HEALTH_CHECK_FAILURE

      public static final ConnectionEventType HEALTH_CHECK_FAILURE
      A health check (ping/heartbeat) has failed.
    • RECONNECTION_ATTEMPT

      public static final ConnectionEventType RECONNECTION_ATTEMPT
      An automatic reconnection attempt is being made.
    • RECONNECTION_SUCCESS

      public static final ConnectionEventType RECONNECTION_SUCCESS
      Automatic reconnection has succeeded.
    • RECONNECTION_FAILURE

      public static final ConnectionEventType RECONNECTION_FAILURE
      Automatic reconnection has failed (may retry with backoff).
    • RECONNECTION_EXHAUSTED

      public static final ConnectionEventType RECONNECTION_EXHAUSTED
      Maximum reconnection attempts reached, giving up.
  • Method Details

    • values

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