Class | Description |
---|---|
AtomicMaxLong |
It stores the maximum value;
the compare-and-change procedure is synchronized so that multi-thread safe is ensured.
存放最大值,“比较然后交换”的过程是同步的,所以它是多线程安全的。 |
AtomicMinLong |
It stores the minimum value;
the compare-and-change procedure is synchronized so that multi-thread safe is ensured.
存放最小值,“比较然后交换”的过程是同步的,所以它是多线程安全的。 |
BasicFrequencyCounter |
频次计数器
|
BasicNumberStatistics |
提供基本的统计信息,包括:
最大值、最小值、平均值、总计、个数。
它是多线程安全的。
|
FrequencyCounter |
频次计数器的基类,它实现了一些公共的方法,并留出具体实现方法给子类去实现。
|
FrequencyCounterDefinition |
频次计数器的设置信息
|
PackagedFrequencyCounter |
打包封装好的频次计数工具
|
Copyright © 2014. All Rights Reserved.