Package io.netty.channel.pool
Enum FixedChannelPool.AcquireTimeoutAction
- java.lang.Object
-
- java.lang.Enum<FixedChannelPool.AcquireTimeoutAction>
-
- io.netty.channel.pool.FixedChannelPool.AcquireTimeoutAction
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FixedChannelPool.AcquireTimeoutAction>
- Enclosing class:
- FixedChannelPool
public static enum FixedChannelPool.AcquireTimeoutAction extends java.lang.Enum<FixedChannelPool.AcquireTimeoutAction>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FixedChannelPool.AcquireTimeoutAction
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FixedChannelPool.AcquireTimeoutAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEW
public static final FixedChannelPool.AcquireTimeoutAction NEW
Create a new connection when the timeout is detected.
-
FAIL
public static final FixedChannelPool.AcquireTimeoutAction FAIL
Fail theFuture
of the acquire call with aTimeoutException
.
-
-
Method Detail
-
values
public static FixedChannelPool.AcquireTimeoutAction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FixedChannelPool.AcquireTimeoutAction c : FixedChannelPool.AcquireTimeoutAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FixedChannelPool.AcquireTimeoutAction valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-