Enum Class MemberAliveIndicatorStatus

java.lang.Object
java.lang.Enum<MemberAliveIndicatorStatus>
org.openspaces.admin.pu.MemberAliveIndicatorStatus
All Implemented Interfaces:
Serializable, Comparable<MemberAliveIndicatorStatus>, java.lang.constant.Constable

public enum MemberAliveIndicatorStatus extends Enum<MemberAliveIndicatorStatus>
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:
  • Enum Constant Details

    • ALIVE

      public static final MemberAliveIndicatorStatus ALIVE
      processing unit instance has replied to monitoring attempts
    • SUSPECTING_FAILURE

      public static final MemberAliveIndicatorStatus SUSPECTING_FAILURE
      processing unit instance has yet to respond to monitoring retry attempts
    • DETECTED_FAILURE

      public static final MemberAliveIndicatorStatus DETECTED_FAILURE
      processing unit instance has failed to respond for all monitoring retry attempts
  • Method Details

    • values

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