Uses of Class
org.HdrHistogram.Histogram

Uses of Histogram in org.HdrHistogram
 

Subclasses of Histogram in org.HdrHistogram
 class AtomicHistogram
          A High Dynamic Range (HDR) Histogram using atomic long count type
 class ConcurrentHistogram
          An integer values High Dynamic Range (HDR) Histogram that supports safe concurrent recording operations.
 class SynchronizedHistogram
          An integer values High Dynamic Range (HDR) Histogram that is synchronized as a whole
 

Methods in org.HdrHistogram that return Histogram
 Histogram Histogram.copy()
           
 Histogram Histogram.copyCorrectedForCoordinatedOmission(long expectedIntervalBetweenValueSamples)
           
static Histogram Histogram.decodeFromByteBuffer(ByteBuffer buffer, long minBarForHighestTrackableValue)
          Construct a new histogram by decoding it from a ByteBuffer.
static Histogram Histogram.decodeFromCompressedByteBuffer(ByteBuffer buffer, long minBarForHighestTrackableValue)
          Construct a new histogram by decoding it from a compressed form in a ByteBuffer.
 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 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 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 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.
 

Methods in org.HdrHistogram with parameters of type Histogram
 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 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.
 void SingleWriterRecorder.getIntervalHistogramInto(Histogram targetHistogram)
          Place a copy of the value counts accumulated since accumulated (since the last interval histogram was taken) into targetHistogram.
 void Recorder.getIntervalHistogramInto(Histogram targetHistogram)
          Place a copy of the value counts accumulated since accumulated (since the last interval histogram was taken) into targetHistogram.
 



Copyright © 2015. All rights reserved.