Interface | Description |
---|---|
FutureWithStatistics<T> |
Extension of the common
Future interface with statistics gathered inside the computation. |
Class | Description |
---|---|
FutureWithStatisticsImpl<T> |
Implementation of the
FutureWithStatistics . |
OperationStatistics |
A local (operation's) list of statistics.
|
StatisticCounter | |
StatisticMinMaxCounter | |
StatisticObject | |
StatisticRefCounter | |
Statistics<TSelf extends Statistics<TSelf>> |
Base class for all statistics.
|
StatisticSimpleWeakrefCounter | |
StatisticSlidingAvgCounter |
This is a statistic that counts aggregated functions (especially avg) from
1) last n values - if n+1 value is added, the first is removed and not considered any more or
2) values stored in the time-sliding window
3) combination of 1) and 2)
Moreover, there is a possibility of linking each value (and time) with a "key" and then all
values added to this counter are sumed up according to the key
|
StatisticSlidingAvgCounter.ValueTime |
This simple class encapsulates the pair: double value + time when it was added
|
StatisticTimer |
Statistics for counting wall-clock time.
|