Class DefaultPooledObjectInfo
java.lang.Object
org.apache.tomcat.dbcp.pool2.impl.DefaultPooledObjectInfo
- All Implemented Interfaces:
- DefaultPooledObjectInfoMBean
Implementation of object that is used to provide information on pooled
 objects via JMX.
- Since:
- 2.0
- 
Constructor SummaryConstructorsConstructorDescriptionDefaultPooledObjectInfo(PooledObject<?> pooledObject) Create a new instance for the given pooled object.
- 
Method SummaryModifier and TypeMethodDescriptionlongGet the number of times this object has been borrowed.longObtain the time (using the same basis asSystem.currentTimeMillis()) that pooled object was created.Obtain the time that pooled object was created.longObtain the time (using the same basis asSystem.currentTimeMillis()) the polled object was last borrowed.Obtain the time that pooled object was last borrowed.Obtain the stack trace recorded when the pooled object was last borrowed.longObtain the time (using the same basis asSystem.currentTimeMillis())the wrapped object was last returned.Obtain the time that pooled object was last returned.Provides a String form of the wrapper for debug purposes.Obtain the name of the class of the pooled object.toString()
- 
Constructor Details- 
DefaultPooledObjectInfoCreate a new instance for the given pooled object.- Parameters:
- pooledObject- The pooled object that this instance will represent
 
 
- 
- 
Method Details- 
getCreateTimepublic long getCreateTime()Description copied from interface:DefaultPooledObjectInfoMBeanObtain the time (using the same basis asSystem.currentTimeMillis()) that pooled object was created.- Specified by:
- getCreateTimein interface- DefaultPooledObjectInfoMBean
- Returns:
- The creation time for the pooled object
 
- 
getCreateTimeFormattedDescription copied from interface:DefaultPooledObjectInfoMBeanObtain the time that pooled object was created.- Specified by:
- getCreateTimeFormattedin interface- DefaultPooledObjectInfoMBean
- Returns:
- The creation time for the pooled object formatted as
         yyyy-MM-dd HH:mm:ss Z
 
- 
getLastBorrowTimepublic long getLastBorrowTime()Description copied from interface:DefaultPooledObjectInfoMBeanObtain the time (using the same basis asSystem.currentTimeMillis()) the polled object was last borrowed.- Specified by:
- getLastBorrowTimein interface- DefaultPooledObjectInfoMBean
- Returns:
- The time the pooled object was last borrowed
 
- 
getLastBorrowTimeFormattedDescription copied from interface:DefaultPooledObjectInfoMBeanObtain the time that pooled object was last borrowed.- Specified by:
- getLastBorrowTimeFormattedin interface- DefaultPooledObjectInfoMBean
- Returns:
- The last borrowed time for the pooled object formatted as
         yyyy-MM-dd HH:mm:ss Z
 
- 
getLastBorrowTraceDescription copied from interface:DefaultPooledObjectInfoMBeanObtain the stack trace recorded when the pooled object was last borrowed.- Specified by:
- getLastBorrowTracein interface- DefaultPooledObjectInfoMBean
- Returns:
- The stack trace showing which code last borrowed the pooled object
 
- 
getLastReturnTimepublic long getLastReturnTime()Description copied from interface:DefaultPooledObjectInfoMBeanObtain the time (using the same basis asSystem.currentTimeMillis())the wrapped object was last returned.- Specified by:
- getLastReturnTimein interface- DefaultPooledObjectInfoMBean
- Returns:
- The time the object was last returned
 
- 
getLastReturnTimeFormattedDescription copied from interface:DefaultPooledObjectInfoMBeanObtain the time that pooled object was last returned.- Specified by:
- getLastReturnTimeFormattedin interface- DefaultPooledObjectInfoMBean
- Returns:
- The last returned time for the pooled object formatted as
         yyyy-MM-dd HH:mm:ss Z
 
- 
getPooledObjectTypeDescription copied from interface:DefaultPooledObjectInfoMBeanObtain the name of the class of the pooled object.- Specified by:
- getPooledObjectTypein interface- DefaultPooledObjectInfoMBean
- Returns:
- The pooled object's class name
- See Also:
 
- 
getPooledObjectToStringDescription copied from interface:DefaultPooledObjectInfoMBeanProvides a String form of the wrapper for debug purposes. The format is not fixed and may change at any time.- Specified by:
- getPooledObjectToStringin interface- DefaultPooledObjectInfoMBean
- Returns:
- A string representation of the pooled object
- See Also:
 
- 
getBorrowedCountpublic long getBorrowedCount()Description copied from interface:DefaultPooledObjectInfoMBeanGet the number of times this object has been borrowed.- Specified by:
- getBorrowedCountin interface- DefaultPooledObjectInfoMBean
- Returns:
- The number of times this object has been borrowed.
 
- 
toString
 
-