Package com.linkedin.alpini.base.pool
Interface PoolStats.LifeCycleStats
-
- Enclosing interface:
- PoolStats
public static interface PoolStats.LifeCycleStats
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetCreateTime50Pct()Get the 50 percentage time to create an object.doublegetCreateTime95Pct()Get the 95 percentage time to create an object.doublegetCreateTime99Pct()Get the 99 percentage time to create an object.doublegetCreateTimeAvg()Get the average time to create an object.doublegetDestroyTime50Pct()Get the 50 percentage time to create an object.doublegetDestroyTime95Pct()Get the 95 percentage time to create an object.doublegetDestroyTime99Pct()Get the 99 percentage time to create an object.doublegetDestroyTimeAvg()Get the average time to create an object.doublegetTestTime50Pct()Get the 50 percentage time to create an object.doublegetTestTime95Pct()Get the 95 percentage time to create an object.doublegetTestTime99Pct()Get the 99 percentage time to create an object.doublegetTestTimeAvg()Get the average time to create an object.
-
-
-
Method Detail
-
getCreateTimeAvg
double getCreateTimeAvg()
Get the average time to create an object.- Returns:
- The average create time.
-
getCreateTime50Pct
double getCreateTime50Pct()
Get the 50 percentage time to create an object.- Returns:
- 50 percentage create time.
-
getCreateTime95Pct
double getCreateTime95Pct()
Get the 95 percentage time to create an object.- Returns:
- 95 percentage create time.
-
getCreateTime99Pct
double getCreateTime99Pct()
Get the 99 percentage time to create an object.- Returns:
- 99 percentage create time.
-
getTestTimeAvg
double getTestTimeAvg()
Get the average time to create an object.- Returns:
- The average create time.
-
getTestTime50Pct
double getTestTime50Pct()
Get the 50 percentage time to create an object.- Returns:
- 50 percentage create time.
-
getTestTime95Pct
double getTestTime95Pct()
Get the 95 percentage time to create an object.- Returns:
- 95 percentage create time.
-
getTestTime99Pct
double getTestTime99Pct()
Get the 99 percentage time to create an object.- Returns:
- 99 percentage create time.
-
getDestroyTimeAvg
double getDestroyTimeAvg()
Get the average time to create an object.- Returns:
- The average create time.
-
getDestroyTime50Pct
double getDestroyTime50Pct()
Get the 50 percentage time to create an object.- Returns:
- 50 percentage create time.
-
getDestroyTime95Pct
double getDestroyTime95Pct()
Get the 95 percentage time to create an object.- Returns:
- 95 percentage create time.
-
getDestroyTime99Pct
double getDestroyTime99Pct()
Get the 99 percentage time to create an object.- Returns:
- 99 percentage create time.
-
-