Interface GenericObjectPoolMXBean
- All Known Implementing Classes:
GenericObjectPool
public interface GenericObjectPoolMXBean
Defines the methods that will be made available via JMX.
NOTE: This interface exists only to define those attributes and methods that
will be made available via JMX. It must not be implemented by clients
as it is subject to change between major, minor and patch version
releases of commons pool. Clients that implement this interface may
not, therefore, be able to upgrade to a new minor or patch release
without requiring code changes.
- Since:
- 2.0
-
Method Details
-
getBlockWhenExhausted
boolean getBlockWhenExhausted()- Returns:
- See
BaseGenericObjectPool.getBlockWhenExhausted()
-
getFairness
boolean getFairness()- Returns:
- See
BaseGenericObjectPool.getLifo()
-
getLifo
boolean getLifo()- Returns:
- See
BaseGenericObjectPool.getFairness()
-
getMaxIdle
int getMaxIdle()- Returns:
- See
GenericObjectPool.getMaxIdle()
-
getMaxTotal
int getMaxTotal()- Returns:
- See
BaseGenericObjectPool.getMaxTotal()
-
getMaxWaitMillis
long getMaxWaitMillis()- Returns:
- See
BaseGenericObjectPool.getMaxWaitMillis()
-
getMinEvictableIdleTimeMillis
long getMinEvictableIdleTimeMillis() -
getMinIdle
int getMinIdle()- Returns:
- See
GenericObjectPool.getMinIdle()
-
getNumActive
int getNumActive()- Returns:
- See
GenericObjectPool.getNumActive()
-
getNumIdle
int getNumIdle()- Returns:
- See
GenericObjectPool.getNumIdle()
-
getNumTestsPerEvictionRun
int getNumTestsPerEvictionRun()- Returns:
- See
BaseGenericObjectPool.getNumTestsPerEvictionRun()
-
getTestOnCreate
boolean getTestOnCreate()- Returns:
- See
BaseGenericObjectPool.getTestOnCreate()
- Since:
- 2.2
-
getTestOnBorrow
boolean getTestOnBorrow()- Returns:
- See
BaseGenericObjectPool.getTestOnBorrow()
-
getTestOnReturn
boolean getTestOnReturn()- Returns:
- See
BaseGenericObjectPool.getTestOnReturn()
-
getTestWhileIdle
boolean getTestWhileIdle()- Returns:
- See
BaseGenericObjectPool.getTestWhileIdle()
-
getTimeBetweenEvictionRunsMillis
long getTimeBetweenEvictionRunsMillis() -
isClosed
boolean isClosed()- Returns:
- See
BaseGenericObjectPool.isClosed()
-
getBorrowedCount
long getBorrowedCount()- Returns:
- See
BaseGenericObjectPool.getBorrowedCount()
-
getReturnedCount
long getReturnedCount()- Returns:
- See
BaseGenericObjectPool.getReturnedCount()
-
getCreatedCount
long getCreatedCount()- Returns:
- See
BaseGenericObjectPool.getCreatedCount()
-
getDestroyedCount
long getDestroyedCount()- Returns:
- See
BaseGenericObjectPool.getDestroyedCount()
-
getDestroyedByEvictorCount
long getDestroyedByEvictorCount()- Returns:
- See
BaseGenericObjectPool.getDestroyedByEvictorCount()
-
getDestroyedByBorrowValidationCount
long getDestroyedByBorrowValidationCount() -
getMeanActiveTimeMillis
long getMeanActiveTimeMillis()- Returns:
- See
BaseGenericObjectPool.getMeanActiveTimeMillis()
-
getMeanIdleTimeMillis
long getMeanIdleTimeMillis()- Returns:
- See
BaseGenericObjectPool.getMeanIdleTimeMillis()
-
getMeanBorrowWaitTimeMillis
long getMeanBorrowWaitTimeMillis()- Returns:
- See
BaseGenericObjectPool.getMeanBorrowWaitTimeMillis()
-
getMaxBorrowWaitTimeMillis
long getMaxBorrowWaitTimeMillis()- Returns:
- See
BaseGenericObjectPool.getMaxBorrowWaitTimeMillis()
-
getCreationStackTrace
String getCreationStackTrace()- Returns:
- See
BaseGenericObjectPool.getCreationStackTrace()
-
getNumWaiters
int getNumWaiters()- Returns:
- See
GenericObjectPool.getNumWaiters()
-
isAbandonedConfig
boolean isAbandonedConfig()- Returns:
- See
GenericObjectPool.isAbandonedConfig()
-
getLogAbandoned
boolean getLogAbandoned()- Returns:
- See
GenericObjectPool.getLogAbandoned()
-
getRemoveAbandonedOnBorrow
boolean getRemoveAbandonedOnBorrow()- Returns:
- See
GenericObjectPool.getRemoveAbandonedOnBorrow()
-
getRemoveAbandonedOnMaintenance
boolean getRemoveAbandonedOnMaintenance()- Returns:
- See
GenericObjectPool.getRemoveAbandonedOnMaintenance()
-
getRemoveAbandonedTimeout
int getRemoveAbandonedTimeout()- Returns:
- See
GenericObjectPool.getRemoveAbandonedTimeout()
-
getFactoryType
String getFactoryType()- Returns:
- See
GenericObjectPool.getFactoryType()
-
listAllObjects
Set<DefaultPooledObjectInfo> listAllObjects()- Returns:
- See
GenericObjectPool.listAllObjects()
-