Interface DefaultPooledObjectInfoMBean
- 
- All Known Implementing Classes:
- DefaultPooledObjectInfo
 
 public interface DefaultPooledObjectInfoMBeanThe interface that defines the information about pooled objects that will be exposed 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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetBorrowedCount()Get the number of times this object has been borrowed.longgetCreateTime()Obtain the time (using the same basis asSystem.currentTimeMillis()) that pooled object was created.java.lang.StringgetCreateTimeFormatted()Obtain the time that pooled object was created.longgetLastBorrowTime()Obtain the time (using the same basis asSystem.currentTimeMillis()) the polled object was last borrowed.java.lang.StringgetLastBorrowTimeFormatted()Obtain the time that pooled object was last borrowed.java.lang.StringgetLastBorrowTrace()Obtain the stack trace recorded when the pooled object was last borrowed.longgetLastReturnTime()Obtain the time (using the same basis asSystem.currentTimeMillis())the wrapped object was last returned.java.lang.StringgetLastReturnTimeFormatted()Obtain the time that pooled object was last returned.java.lang.StringgetPooledObjectToString()Provides a String form of the wrapper for debug purposes.java.lang.StringgetPooledObjectType()Obtain the name of the class of the pooled object.
 
- 
- 
- 
Method Detail- 
getCreateTimelong getCreateTime() Obtain the time (using the same basis asSystem.currentTimeMillis()) that pooled object was created.- Returns:
- The creation time for the pooled object
 
 - 
getCreateTimeFormattedjava.lang.String getCreateTimeFormatted() Obtain the time that pooled object was created.- Returns:
- The creation time for the pooled object formatted as
         yyyy-MM-dd HH:mm:ss Z
 
 - 
getLastBorrowTimelong getLastBorrowTime() Obtain the time (using the same basis asSystem.currentTimeMillis()) the polled object was last borrowed.- Returns:
- The time the pooled object was last borrowed
 
 - 
getLastBorrowTimeFormattedjava.lang.String getLastBorrowTimeFormatted() Obtain the time that pooled object was last borrowed.- Returns:
- The last borrowed time for the pooled object formatted as
         yyyy-MM-dd HH:mm:ss Z
 
 - 
getLastBorrowTracejava.lang.String getLastBorrowTrace() Obtain the stack trace recorded when the pooled object was last borrowed.- Returns:
- The stack trace showing which code last borrowed the pooled object
 
 - 
getLastReturnTimelong getLastReturnTime() Obtain the time (using the same basis asSystem.currentTimeMillis())the wrapped object was last returned.- Returns:
- The time the object was last returned
 
 - 
getLastReturnTimeFormattedjava.lang.String getLastReturnTimeFormatted() Obtain the time that pooled object was last returned.- Returns:
- The last returned time for the pooled object formatted as
         yyyy-MM-dd HH:mm:ss Z
 
 - 
getPooledObjectTypejava.lang.String getPooledObjectType() Obtain the name of the class of the pooled object.- Returns:
- The pooled object's class name
- See Also:
- Class.getName()
 
 - 
getPooledObjectToStringjava.lang.String getPooledObjectToString() Provides a String form of the wrapper for debug purposes. The format is not fixed and may change at any time.- Returns:
- A string representation of the pooled object
- See Also:
- Object.toString()
 
 - 
getBorrowedCountlong getBorrowedCount() Get the number of times this object has been borrowed.- Returns:
- The number of times this object has been borrowed.
- Since:
- 2.1
 
 
- 
 
-