Uses of Class
org.HdrHistogram.AbstractHistogram

Uses of AbstractHistogram in org.HdrHistogram
 

Subclasses of AbstractHistogram in org.HdrHistogram
 class AtomicHistogram
          A High Dynamic Range (HDR) Histogram using atomic long count type
 class Histogram
          A High Dynamic Range (HDR) Histogram
 class IntHistogram
          A High Dynamic Range (HDR) Histogram using an int count type
 class ShortHistogram
          A High Dynamic Range (HDR) Histogram using a short count type
 class SynchronizedHistogram
          An internally synchronized High Dynamic Range (HDR) Histogram using a long count type
 

Methods in org.HdrHistogram that return AbstractHistogram
abstract  AbstractHistogram AbstractHistogram.copy()
          Create a copy of this histogram, complete with data and everything.
abstract  AbstractHistogram AbstractHistogram.copyCorrectedForCoordinatedOmission(long expectedIntervalBetweenValueSamples)
          Get a copy of this histogram, corrected for coordinated omission.
 

Methods in org.HdrHistogram with parameters of type AbstractHistogram
 void SynchronizedHistogram.add(AbstractHistogram other)
           
 void AbstractHistogram.add(AbstractHistogram fromHistogram)
          Add the contents of another histogram to this one.
 void AbstractHistogram.addWhileCorrectingForCoordinatedOmission(AbstractHistogram fromHistogram, long expectedIntervalBetweenValueSamples)
          Add the contents of another histogram to this one, while correcting the incoming data for coordinated omission.
 void AbstractHistogram.copyInto(AbstractHistogram targetHistogram)
          Copy this histogram into the target histogram, overwriting it's contents.
 void AbstractHistogram.copyIntoCorrectedForCoordinatedOmission(AbstractHistogram targetHistogram, long expectedIntervalBetweenValueSamples)
          Copy this histogram, corrected for coordinated omission, into the target histogram, overwriting it's contents.
 

Constructors in org.HdrHistogram with parameters of type AbstractHistogram
AllValuesIterator(AbstractHistogram histogram)
           
LinearIterator(AbstractHistogram histogram, int valueUnitsPerBucket)
           
LogarithmicIterator(AbstractHistogram histogram, int valueUnitsInFirstBucket, double logBase)
           
PercentileIterator(AbstractHistogram histogram, int percentileTicksPerHalfDistance)
           
RecordedValuesIterator(AbstractHistogram histogram)
           
 



Copyright © 2014. All rights reserved.