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 voidatomicAdd(int index, long valueToAdd)voidatomicIncrement(int index)longget(int index)doublegetDoubleToIntegerValueConversionRatio()intgetEstimatedFootprintInBytes()intgetNormalizingIndexOffset()voidlazySet(int index, long newValue)intlength()voidsetDoubleToIntegerValueConversionRatio(double doubleToIntegerValueConversionRatio)voidsetNormalizingIndexOffset(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()
-
-