Package org.apache.camel.support
Class PooledObjectFactorySupport.UtilizationStatistics
- java.lang.Object
-
- org.apache.camel.support.PooledObjectFactorySupport.UtilizationStatistics
-
- All Implemented Interfaces:
org.apache.camel.spi.PooledObjectFactory.Statistics
- Enclosing class:
- PooledObjectFactorySupport<T>
protected final class PooledObjectFactorySupport.UtilizationStatistics extends Object implements org.apache.camel.spi.PooledObjectFactory.Statistics
Represents utilization statistics
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedUtilizationStatistics()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetAcquiredCounter()longgetCreatedCounter()longgetDiscardedCounter()longgetReleasedCounter()voidreset()
-
-
-
Method Detail
-
reset
public void reset()
- Specified by:
resetin interfaceorg.apache.camel.spi.PooledObjectFactory.Statistics
-
getCreatedCounter
public long getCreatedCounter()
- Specified by:
getCreatedCounterin interfaceorg.apache.camel.spi.PooledObjectFactory.Statistics
-
getAcquiredCounter
public long getAcquiredCounter()
- Specified by:
getAcquiredCounterin interfaceorg.apache.camel.spi.PooledObjectFactory.Statistics
-
getReleasedCounter
public long getReleasedCounter()
- Specified by:
getReleasedCounterin interfaceorg.apache.camel.spi.PooledObjectFactory.Statistics
-
getDiscardedCounter
public long getDiscardedCounter()
- Specified by:
getDiscardedCounterin interfaceorg.apache.camel.spi.PooledObjectFactory.Statistics
-
-