Uses of Class
org.HdrHistogram.Histogram
-
Packages that use Histogram Package Description org.HdrHistogram A High Dynamic Range (HDR) Histogram Package -
-
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.class
PackedConcurrentHistogram
An integer values High Dynamic Range (HDR) Histogram that uses a packed internal representation and supports safe concurrent recording operations.class
PackedHistogram
A High Dynamic Range (HDR) Histogram that uses a packed internal representationprivate static class
Recorder.InternalAtomicHistogram
private static class
Recorder.InternalConcurrentHistogram
private static class
Recorder.InternalPackedConcurrentHistogram
private static class
SingleWriterRecorder.InternalHistogram
private static class
SingleWriterRecorder.PackedInternalHistogram
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
SingleWriterRecorder. activeHistogram
private Histogram
Recorder. inactiveHistogram
private Histogram
SingleWriterRecorder. 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.static Histogram
Histogram. fromString(java.lang.String base64CompressedHistogramString)
Construct a new Histogram by decoding it from a String containing a base64 encoded compressed histogram representation.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)
-