Package com.zeroc.Ice
Enum Class ACMClose
- All Implemented Interfaces:
Serializable
,Comparable<ACMClose>
,Constable
Specifies the close semantics for Active Connection Management.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDisables automatic connection closure.Gracefully closes a connection that has been idle for the configured timeout period.Forcefully closes a connection that has been idle for the configured timeout period, regardless of whether the connection has pending invocations or dispatch.Forcefully closes a connection that has been idle for the configured timeout period, but only if the connection has pending invocations.Combines the behaviors of CloseOnIdle and CloseOnInvocation. -
Method Summary
Modifier and TypeMethodDescriptionint
value()
static ACMClose
valueOf
(int v) Returns the enum constant of this class with the specified name.static ACMClose
Returns the enum constant of this class with the specified name.static ACMClose[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CloseOff
Disables automatic connection closure. -
CloseOnIdle
Gracefully closes a connection that has been idle for the configured timeout period. -
CloseOnInvocation
Forcefully closes a connection that has been idle for the configured timeout period, but only if the connection has pending invocations. -
CloseOnInvocationAndIdle
Combines the behaviors of CloseOnIdle and CloseOnInvocation. -
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
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
-
value
public int value() -
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:
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 nameNullPointerException
- if the argument is null
-