Uses of Class
org.HdrHistogram.Histogram
-
-
Uses of Histogram in org.HdrHistogram
Subclasses of Histogram in org.HdrHistogram Modifier and Type Class Description class
AtomicHistogram
A High Dynamic Range (HDR) Histogram using atomiclong
count typeclass
ConcurrentHistogram
An integer values High Dynamic Range (HDR) Histogram that supports safe concurrent recording operations.private class
Recorder.InternalAtomicHistogram
private class
Recorder.InternalConcurrentHistogram
private class
SingleWriterRecorder.InternalHistogram
class
SynchronizedHistogram
An integer values High Dynamic Range (HDR) Histogram that is synchronized as a wholeFields in org.HdrHistogram declared as Histogram Modifier and Type Field Description private Histogram
Recorder. activeHistogram
private Histogram
Recorder. inactiveHistogram
Methods in org.HdrHistogram that return Histogram Modifier and Type Method Description Histogram
Histogram. copy()
Histogram
Histogram. copyCorrectedForCoordinatedOmission(long expectedIntervalBetweenValueSamples)
static Histogram
Histogram. decodeFromByteBuffer(java.nio.ByteBuffer buffer, long minBarForHighestTrackableValue)
Construct a new histogram by decoding it from a ByteBuffer.static Histogram
Histogram. decodeFromCompressedByteBuffer(java.nio.ByteBuffer buffer, long minBarForHighestTrackableValue)
Construct a new histogram by decoding it from a compressed form in a ByteBuffer.Histogram
Recorder. getIntervalHistogram()
Get a new instance of an interval histogram, which will include a stable, consistent view of all value counts accumulated since the last interval histogram was taken.Histogram
Recorder. getIntervalHistogram(Histogram histogramToRecycle)
Get an interval histogram, which will include a stable, consistent view of all value counts accumulated since the last interval histogram was taken.Histogram
Recorder. getIntervalHistogram(Histogram histogramToRecycle, boolean enforeContainingInstance)
Get an interval histogram, which will include a stable, consistent view of all value counts accumulated since the last interval histogram was taken.Histogram
SingleWriterRecorder. getIntervalHistogram()
Get a new instance of an interval histogram, which will include a stable, consistent view of all value counts accumulated since the last interval histogram was taken.Histogram
SingleWriterRecorder. getIntervalHistogram(Histogram histogramToRecycle)
Get an interval histogram, which will include a stable, consistent view of all value counts accumulated since the last interval histogram was taken.Histogram
SingleWriterRecorder. getIntervalHistogram(Histogram histogramToRecycle, boolean enforeContainingInstance)
Get an interval histogram, which will include a stable, consistent view of all value counts accumulated since the last interval histogram was taken.Methods in org.HdrHistogram with parameters of type Histogram Modifier and Type Method Description Histogram
Recorder. getIntervalHistogram(Histogram histogramToRecycle)
Get an interval histogram, which will include a stable, consistent view of all value counts accumulated since the last interval histogram was taken.Histogram
Recorder. getIntervalHistogram(Histogram histogramToRecycle, boolean enforeContainingInstance)
Get an interval histogram, which will include a stable, consistent view of all value counts accumulated since the last interval histogram was taken.Histogram
SingleWriterRecorder. getIntervalHistogram(Histogram histogramToRecycle)
Get an interval histogram, which will include a stable, consistent view of all value counts accumulated since the last interval histogram was taken.Histogram
SingleWriterRecorder. getIntervalHistogram(Histogram histogramToRecycle, boolean enforeContainingInstance)
Get an interval histogram, which will include a stable, consistent view of all value counts accumulated since the last interval histogram was taken.void
Recorder. getIntervalHistogramInto(Histogram targetHistogram)
Place a copy of the value counts accumulated since accumulated (since the last interval histogram was taken) intotargetHistogram
.void
SingleWriterRecorder. getIntervalHistogramInto(Histogram targetHistogram)
Place a copy of the value counts accumulated since accumulated (since the last interval histogram was taken) intotargetHistogram
.private void
Recorder. validateFitAsReplacementHistogram(Histogram replacementHistogram, boolean enforeContainingInstance)
private void
SingleWriterRecorder. validateFitAsReplacementHistogram(Histogram replacementHistogram, boolean enforeContainingInstance)
-