Package com.zeroc.Ice

Enum Class ACMClose

java.lang.Object
java.lang.Enum<ACMClose>
com.zeroc.Ice.ACMClose
All Implemented Interfaces:
Serializable, Comparable<ACMClose>, Constable

public enum ACMClose extends Enum<ACMClose>
Specifies the close semantics for Active Connection Management.
  • Enum Constant Details

    • CloseOff

      public static final ACMClose CloseOff
      Disables automatic connection closure.
    • CloseOnIdle

      public static final ACMClose CloseOnIdle
      Gracefully closes a connection that has been idle for the configured timeout period.
    • CloseOnInvocation

      public static final ACMClose CloseOnInvocation
      Forcefully closes a connection that has been idle for the configured timeout period, but only if the connection has pending invocations.
    • CloseOnInvocationAndIdle

      public static final ACMClose CloseOnInvocationAndIdle
      Combines the behaviors of CloseOnIdle and CloseOnInvocation.
    • CloseOnIdleForceful

      public static final ACMClose CloseOnIdleForceful
      Forcefully closes a connection that has been idle for the configured timeout period, regardless of whether the connection has pending invocations or dispatch.
  • Method Details

    • values

      public static ACMClose[] 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 ACMClose 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
    • value

      public int value()
    • valueOf

      public static ACMClose valueOf(int v)
      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:
      v - 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