Uses of Class
org.HdrHistogram.DoubleHistogram
-
-
Uses of DoubleHistogram in org.HdrHistogram
Subclasses of DoubleHistogram in org.HdrHistogram Modifier and Type Class Description classConcurrentDoubleHistogramA floating point values High Dynamic Range (HDR) Histogram that supports safe concurrent recording operations.classPackedConcurrentDoubleHistogramA floating point values High Dynamic Range (HDR) Histogram that uses a packed internal representation and supports safe concurrent recording operations.classPackedDoubleHistogramA floating point values High Dynamic Range (HDR) Histogram that uses a packed internal representationclassSynchronizedDoubleHistogramA floating point values High Dynamic Range (HDR) Histogram that is synchronized as a wholeMethods in org.HdrHistogram that return DoubleHistogram Modifier and Type Method Description DoubleHistogramDoubleHistogram. copy()Create a copy of this histogram, complete with data and everything.DoubleHistogramSynchronizedDoubleHistogram. copy()DoubleHistogramDoubleHistogram. copyCorrectedForCoordinatedOmission(double expectedIntervalBetweenValueSamples)Get a copy of this histogram, corrected for coordinated omission.DoubleHistogramSynchronizedDoubleHistogram. copyCorrectedForCoordinatedOmission(double expectedIntervalBetweenValueSamples)static DoubleHistogramDoubleHistogram. decodeFromByteBuffer(ByteBuffer buffer, long minBarForHighestToLowestValueRatio)Construct a new DoubleHistogram by decoding it from a ByteBuffer.static DoubleHistogramDoubleHistogram. decodeFromByteBuffer(ByteBuffer buffer, Class<? extends AbstractHistogram> internalCountsHistogramClass, long minBarForHighestToLowestValueRatio)Construct a new DoubleHistogram by decoding it from a ByteBuffer, using a specified AbstractHistogram subclass for tracking internal counts (e.g.static DoubleHistogramDoubleHistogram. decodeFromCompressedByteBuffer(ByteBuffer buffer, long minBarForHighestToLowestValueRatio)Construct a new DoubleHistogram by decoding it from a compressed form in a ByteBuffer.static DoubleHistogramDoubleHistogram. decodeFromCompressedByteBuffer(ByteBuffer buffer, Class<? extends AbstractHistogram> internalCountsHistogramClass, long minBarForHighestToLowestValueRatio)Construct a new DoubleHistogram by decoding it from a compressed form in a ByteBuffer, using a specified AbstractHistogram subclass for tracking internal counts (e.g.static DoubleHistogramDoubleHistogram. fromString(String base64CompressedHistogramString)Construct a new DoubleHistogram by decoding it from a String containing a base64 encoded compressed histogram representation.DoubleHistogramDoubleRecorder. getIntervalHistogram()DoubleHistogramDoubleRecorder. getIntervalHistogram(DoubleHistogram histogramToRecycle)DoubleHistogramDoubleRecorder. getIntervalHistogram(DoubleHistogram histogramToRecycle, boolean enforceContainingInstance)DoubleHistogramSingleWriterDoubleRecorder. getIntervalHistogram()DoubleHistogramSingleWriterDoubleRecorder. getIntervalHistogram(DoubleHistogram histogramToRecycle)DoubleHistogramSingleWriterDoubleRecorder. getIntervalHistogram(DoubleHistogram histogramToRecycle, boolean enforceContainingInstance)Methods in org.HdrHistogram with parameters of type DoubleHistogram Modifier and Type Method Description voidDoubleHistogram. add(DoubleHistogram fromHistogram)Add the contents of another histogram to this one.voidSynchronizedDoubleHistogram. add(DoubleHistogram fromHistogram)voidDoubleHistogram. addWhileCorrectingForCoordinatedOmission(DoubleHistogram fromHistogram, double expectedIntervalBetweenValueSamples)Add the contents of another histogram to this one, while correcting the incoming data for coordinated omission.voidSynchronizedDoubleHistogram. addWhileCorrectingForCoordinatedOmission(DoubleHistogram fromHistogram, double expectedIntervalBetweenValueSamples)voidDoubleHistogram. copyInto(DoubleHistogram targetHistogram)Copy this histogram into the target histogram, overwriting it's contents.voidSynchronizedDoubleHistogram. copyInto(DoubleHistogram targetHistogram)voidDoubleHistogram. copyIntoCorrectedForCoordinatedOmission(DoubleHistogram targetHistogram, double expectedIntervalBetweenValueSamples)Copy this histogram, corrected for coordinated omission, into the target histogram, overwriting it's contents.voidSynchronizedDoubleHistogram. copyIntoCorrectedForCoordinatedOmission(DoubleHistogram targetHistogram, double expectedIntervalBetweenValueSamples)DoubleHistogramDoubleRecorder. getIntervalHistogram(DoubleHistogram histogramToRecycle)DoubleHistogramDoubleRecorder. getIntervalHistogram(DoubleHistogram histogramToRecycle, boolean enforceContainingInstance)DoubleHistogramSingleWriterDoubleRecorder. getIntervalHistogram(DoubleHistogram histogramToRecycle)DoubleHistogramSingleWriterDoubleRecorder. getIntervalHistogram(DoubleHistogram histogramToRecycle, boolean enforceContainingInstance)voidDoubleRecorder. getIntervalHistogramInto(DoubleHistogram targetHistogram)voidSingleWriterDoubleRecorder. getIntervalHistogramInto(DoubleHistogram targetHistogram)voidDoubleHistogram. subtract(DoubleHistogram otherHistogram)Subtract the contents of another histogram from this one.voidSynchronizedDoubleHistogram. subtract(DoubleHistogram fromHistogram)Constructors in org.HdrHistogram with parameters of type DoubleHistogram Constructor Description ConcurrentDoubleHistogram(DoubleHistogram source)Construct aConcurrentDoubleHistogramwith the same range settings as a given source, duplicating the source's start/end timestamps (but NOT it's contents)DoubleAllValuesIterator(DoubleHistogram histogram)DoubleHistogram(DoubleHistogram source)Construct aDoubleHistogramwith the same range settings as a given source, duplicating the source's start/end timestamps (but NOT it's contents)DoubleLinearIterator(DoubleHistogram histogram, double valueUnitsPerBucket)DoubleLogarithmicIterator(DoubleHistogram histogram, double valueUnitsInFirstBucket, double logBase)DoublePercentileIterator(DoubleHistogram histogram, int percentileTicksPerHalfDistance)DoubleRecordedValuesIterator(DoubleHistogram histogram)PackedConcurrentDoubleHistogram(DoubleHistogram source)Construct aPackedConcurrentDoubleHistogramwith the same range settings as a given source, duplicating the source's start/end timestamps (but NOT it's contents)PackedDoubleHistogram(DoubleHistogram source)Construct aPackedDoubleHistogramwith the same range settings as a given source, duplicating the source's start/end timestamps (but NOT it's contents)
-