Package org.HdrHistogram
Interface ConcurrentHistogram.ConcurrentArrayWithNormalizingOffset
-
- All Known Implementing Classes:
ConcurrentHistogram.AtomicLongArrayWithNormalizingOffset
,PackedConcurrentHistogram.ConcurrentPackedArrayWithNormalizingOffset
- Enclosing class:
- ConcurrentHistogram
static interface ConcurrentHistogram.ConcurrentArrayWithNormalizingOffset
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
atomicAdd(int index, long valueToAdd)
void
atomicIncrement(int index)
long
get(int index)
double
getDoubleToIntegerValueConversionRatio()
int
getEstimatedFootprintInBytes()
int
getNormalizingIndexOffset()
void
lazySet(int index, long newValue)
int
length()
void
setDoubleToIntegerValueConversionRatio(double doubleToIntegerValueConversionRatio)
void
setNormalizingIndexOffset(int normalizingIndexOffset)
-
-
-
Method Detail
-
getNormalizingIndexOffset
int getNormalizingIndexOffset()
-
setNormalizingIndexOffset
void setNormalizingIndexOffset(int normalizingIndexOffset)
-
getDoubleToIntegerValueConversionRatio
double getDoubleToIntegerValueConversionRatio()
-
setDoubleToIntegerValueConversionRatio
void setDoubleToIntegerValueConversionRatio(double doubleToIntegerValueConversionRatio)
-
getEstimatedFootprintInBytes
int getEstimatedFootprintInBytes()
-
get
long get(int index)
-
atomicIncrement
void atomicIncrement(int index)
-
atomicAdd
void atomicAdd(int index, long valueToAdd)
-
lazySet
void lazySet(int index, long newValue)
-
length
int length()
-
-