- java.lang.Object
-
- ch.bind.philib.pool.object.SimplePoolStats
-
-
Constructor Summary
Constructors Constructor Description SimplePoolStats()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetCreates()longgetRecycled()longgetReleased()longgetTakes()StringtoString()
-
-
-
Method Detail
-
getCreates
public long getCreates()
- Specified by:
getCreatesin interfacePoolStats- Returns:
- The number of object which were created because no pooled objects were left.
-
getTakes
public long getTakes()
-
getRecycled
public long getRecycled()
- Specified by:
getRecycledin interfacePoolStats- Returns:
- The number of objects which have been recycled by client-code.
-
getReleased
public long getReleased()
- Specified by:
getReleasedin interfacePoolStats- Returns:
- The number of objects which have been released because they were no longer needed.
-
-