HdrHistogram.LongHistogram.LongHistogram C# (CSharp) Method

LongHistogram() public method

Construct a Histogram given the highest value to be tracked and a number of significant decimal digits. The histogram will be constructed to implicitly track(distinguish from 0) values as low as 1.
public LongHistogram ( long highestTrackableValue, int numberOfSignificantValueDigits ) : System
highestTrackableValue long The highest value to be tracked by the histogram. Must be a positive integer that is >= 2.
numberOfSignificantValueDigits int The number of significant decimal digits to which the histogram will maintain value resolution and separation. /// Must be a non-negative integer between 0 and 5. ///
return System
        public LongHistogram(long highestTrackableValue, int numberOfSignificantValueDigits)
            : this(1, highestTrackableValue, numberOfSignificantValueDigits)
        {
        }

Same methods

LongHistogram::LongHistogram ( long lowestTrackableValue, long highestTrackableValue, int numberOfSignificantValueDigits ) : System
LongHistogram::LongHistogram ( long instanceId, long lowestTrackableValue, long highestTrackableValue, int numberOfSignificantValueDigits ) : System