Uses of Class
org.HdrHistogram.ConcurrentDoubleHistogram
-
Packages that use ConcurrentDoubleHistogram Package Description org.HdrHistogram A High Dynamic Range (HDR) Histogram Package -
-
Uses of ConcurrentDoubleHistogram in org.HdrHistogram
Subclasses of ConcurrentDoubleHistogram in org.HdrHistogram Modifier and Type Class Description private static class
DoubleRecorder.InternalConcurrentDoubleHistogram
private static class
DoubleRecorder.PackedInternalConcurrentDoubleHistogram
class
PackedConcurrentDoubleHistogram
A floating point values High Dynamic Range (HDR) Histogram that uses a packed internal representation and supports safe concurrent recording operations.Fields in org.HdrHistogram declared as ConcurrentDoubleHistogram Modifier and Type Field Description private ConcurrentDoubleHistogram
DoubleRecorder. activeHistogram
private ConcurrentDoubleHistogram
DoubleRecorder. inactiveHistogram
Methods in org.HdrHistogram that return ConcurrentDoubleHistogram Modifier and Type Method Description static ConcurrentDoubleHistogram
ConcurrentDoubleHistogram. decodeFromByteBuffer(java.nio.ByteBuffer buffer, long minBarForHighestToLowestValueRatio)
Construct a new ConcurrentDoubleHistogram by decoding it from a ByteBuffer.static ConcurrentDoubleHistogram
ConcurrentDoubleHistogram. decodeFromCompressedByteBuffer(java.nio.ByteBuffer buffer, long minBarForHighestToLowestValueRatio)
Construct a new ConcurrentDoubleHistogram by decoding it from a compressed form in a ByteBuffer.Constructors in org.HdrHistogram with parameters of type ConcurrentDoubleHistogram Constructor Description SynchronizedDoubleHistogram(ConcurrentDoubleHistogram source)
Construct aSynchronizedDoubleHistogram
with the same range settings as a given source, duplicating the source's start/end timestamps (but NOT it's contents)
-