Package com.lucimber.dbus.connection
Enum Class ConnectionEventType
- All Implemented Interfaces:
Serializable
,Comparable<ConnectionEventType>
,Constable
Types of connection events that can be fired during the connection lifecycle.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA health check (ping/heartbeat) has failed.A health check (ping/heartbeat) has succeeded.An automatic reconnection attempt is being made.Maximum reconnection attempts reached, giving up.Automatic reconnection has failed (may retry with backoff).Automatic reconnection has succeeded.Connection state has changed (e.g., from CONNECTING to CONNECTED). -
Method Summary
Modifier and TypeMethodDescriptionstatic ConnectionEventType
Returns the enum constant of this class with the specified name.static ConnectionEventType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STATE_CHANGED
Connection state has changed (e.g., from CONNECTING to CONNECTED). -
HEALTH_CHECK_SUCCESS
A health check (ping/heartbeat) has succeeded. -
HEALTH_CHECK_FAILURE
A health check (ping/heartbeat) has failed. -
RECONNECTION_ATTEMPT
An automatic reconnection attempt is being made. -
RECONNECTION_SUCCESS
Automatic reconnection has succeeded. -
RECONNECTION_FAILURE
Automatic reconnection has failed (may retry with backoff). -
RECONNECTION_EXHAUSTED
Maximum reconnection attempts reached, giving up.
-
-
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
-