-
public interface PoolStatsTrackerListener that logs pool statistics.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classPoolStatsTracker.Companion
-
Method Summary
Modifier and Type Method Description abstract UnitsetBasePool(BasePool<?> basePool)abstract UnitonValueReuse(Integer bucketedSize)abstract UnitonSoftCapReached()abstract UnitonHardCapReached()abstract UnitonAlloc(Integer size)abstract UnitonFree(Integer sizeInBytes)abstract UnitonValueRelease(Integer sizeInBytes)-
-
Method Detail
-
setBasePool
abstract Unit setBasePool(BasePool<?> basePool)
-
onValueReuse
abstract Unit onValueReuse(Integer bucketedSize)
-
onSoftCapReached
abstract Unit onSoftCapReached()
-
onHardCapReached
abstract Unit onHardCapReached()
-
onValueRelease
abstract Unit onValueRelease(Integer sizeInBytes)
-
-
-
-