public class EvictionConfig extends Object
EvictionPolicy
instances. The EvictionPolicy
may also have
its own specific configuration attributes.
This class is immutable and thread-safe.
Constructor and Description |
---|
EvictionConfig(Duration poolIdleEvictTime,
Duration poolIdleSoftEvictTime,
int minIdle)
Creates a new eviction configuration with the specified parameters.
|
EvictionConfig(long poolIdleEvictTime,
long poolIdleSoftEvictTime,
int minIdle)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
long |
getIdleEvictTime()
Gets the
idleEvictTime for this eviction configuration
instance. |
Duration |
getIdleEvictTimeDuration()
Gets the
idleEvictTime for this eviction configuration
instance. |
long |
getIdleSoftEvictTime()
Gets the
idleSoftEvictTime for this eviction configuration
instance. |
Duration |
getIdleSoftEvictTimeDuration()
Gets the
idleSoftEvictTime for this eviction configuration
instance. |
int |
getMinIdle()
Gets the
minIdle for this eviction configuration instance. |
String |
toString() |
public EvictionConfig(Duration poolIdleEvictTime, Duration poolIdleSoftEvictTime, int minIdle)
poolIdleEvictTime
- Expected to be provided by
BaseGenericObjectPool.getMinEvictableIdleTimeMillis()
poolIdleSoftEvictTime
- Expected to be provided by
BaseGenericObjectPool.getSoftMinEvictableIdleTimeMillis()
minIdle
- Expected to be provided by
GenericObjectPool.getMinIdle()
or
GenericKeyedObjectPool.getMinIdlePerKey()
@Deprecated public EvictionConfig(long poolIdleEvictTime, long poolIdleSoftEvictTime, int minIdle)
EvictionConfig(Duration, Duration, int)
.poolIdleEvictTime
- Expected to be provided by
BaseGenericObjectPool.getMinEvictableIdleTimeMillis()
poolIdleSoftEvictTime
- Expected to be provided by
BaseGenericObjectPool.getSoftMinEvictableIdleTimeMillis()
minIdle
- Expected to be provided by
GenericObjectPool.getMinIdle()
or
GenericKeyedObjectPool.getMinIdlePerKey()
public long getIdleEvictTime()
idleEvictTime
for this eviction configuration
instance.
How the evictor behaves based on this value will be determined by the
configured EvictionPolicy
.
idleEvictTime
in millisecondspublic Duration getIdleEvictTimeDuration()
idleEvictTime
for this eviction configuration
instance.
How the evictor behaves based on this value will be determined by the
configured EvictionPolicy
.
idleEvictTime
.public long getIdleSoftEvictTime()
idleSoftEvictTime
for this eviction configuration
instance.
How the evictor behaves based on this value will be determined by the
configured EvictionPolicy
.
public Duration getIdleSoftEvictTimeDuration()
idleSoftEvictTime
for this eviction configuration
instance.
How the evictor behaves based on this value will be determined by the
configured EvictionPolicy
.
public int getMinIdle()
minIdle
for this eviction configuration instance.
How the evictor behaves based on this value will be determined by the
configured EvictionPolicy
.
minIdle
Copyright © 2001–2021 The Apache Software Foundation. All rights reserved.