Package com.helger.commons.statistics
Interface IMutableStatisticsHandlerTimer
-
- All Superinterfaces:
IStatisticsHandler,IStatisticsHandlerNumeric,IStatisticsHandlerTimer
- All Known Implementing Classes:
StatisticsHandlerTimer
public interface IMutableStatisticsHandlerTimer extends IStatisticsHandlerTimer
Statistics handler for times.- Author:
- Philip Helger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddTime(long nMillis)Add a single execution time.-
Methods inherited from interface com.helger.commons.statistics.IStatisticsHandler
getInvocationCount
-
Methods inherited from interface com.helger.commons.statistics.IStatisticsHandlerNumeric
getAverage, getMax, getMin, getSum
-
-
-
-
Method Detail
-
addTime
void addTime(@Nonnegative long nMillis)
Add a single execution time.- Parameters:
nMillis- The milliseconds it took to execute something. Should not be negative.
-
-