Package org.openspaces.admin.pu
Enum Class MemberAliveIndicatorStatus
- All Implemented Interfaces:
Serializable,Comparable<MemberAliveIndicatorStatus>,java.lang.constant.Constable
Member alive indicator status is communicated by the Grid Service Manager when monitoring managed
processing unit instances. The indicator status transitions are:
- ALIVE --> SUSPECTING_FAILURE : instance has failed to reply on monitoring attempt
- SUSPECTING_FAILURE --> ALIVE : instance has yet to reply on monitoring retry attempt
- SUSPECTING_FAILURE --> DETECTED_FAILURE: instance has failed to respond for all monitoring retry attempts
- Since:
- 8.0.6
- Author:
- moran
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionprocessing unit instance has replied to monitoring attemptsprocessing unit instance has failed to respond for all monitoring retry attemptsprocessing unit instance has yet to respond to monitoring retry attempts -
Method Summary
Modifier and TypeMethodDescriptionstatic MemberAliveIndicatorStatusReturns the enum constant of this class with the specified name.static MemberAliveIndicatorStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALIVE
processing unit instance has replied to monitoring attempts -
SUSPECTING_FAILURE
processing unit instance has yet to respond to monitoring retry attempts -
DETECTED_FAILURE
processing unit instance has failed to respond for all monitoring retry attempts
-
-
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
-