public static enum FeignHttpClientProperties.Hc5Properties.PoolReusePolicy extends Enum<FeignHttpClientProperties.Hc5Properties.PoolReusePolicy>
| Enum Constant and Description |
|---|
FIFO
Re-use all connections equally preventing them from becoming idle and
expiring.
|
LIFO
Re-use as few connections as possible making it possible for connections to
become idle and expire.
|
| Modifier and Type | Method and Description |
|---|---|
static FeignHttpClientProperties.Hc5Properties.PoolReusePolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FeignHttpClientProperties.Hc5Properties.PoolReusePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeignHttpClientProperties.Hc5Properties.PoolReusePolicy LIFO
public static final FeignHttpClientProperties.Hc5Properties.PoolReusePolicy FIFO
public static FeignHttpClientProperties.Hc5Properties.PoolReusePolicy[] values()
for (FeignHttpClientProperties.Hc5Properties.PoolReusePolicy c : FeignHttpClientProperties.Hc5Properties.PoolReusePolicy.values()) System.out.println(c);
public static FeignHttpClientProperties.Hc5Properties.PoolReusePolicy valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022 Pivotal Software, Inc.. All rights reserved.