本文整理了Java中org.HdrHistogram.Histogram.getLowestDiscernibleValue()
方法的一些代码示例,展示了Histogram.getLowestDiscernibleValue()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Histogram.getLowestDiscernibleValue()
方法的具体详情如下:
包路径:org.HdrHistogram.Histogram
类名称:Histogram
方法名:getLowestDiscernibleValue
暂无
代码示例来源:origin: HdrHistogram/HdrHistogram
@Override
public synchronized long getLowestDiscernibleValue() {
return super.getLowestDiscernibleValue();
}
代码示例来源:origin: HdrHistogram/HdrHistogram
inactiveHistogram = new InternalAtomicHistogram(
instanceId,
activeHistogram.getLowestDiscernibleValue(),
activeHistogram.getHighestTrackableValue(),
activeHistogram.getNumberOfSignificantValueDigits());
代码示例来源:origin: org.hdrhistogram/HdrHistogram
@Override
public synchronized long getLowestDiscernibleValue() {
return super.getLowestDiscernibleValue();
}
代码示例来源:origin: com.github.vladimir-bukhtoyarov/rolling-metrics
public static Histogram createNonConcurrentCopy(Histogram source) {
if (source instanceof ConcurrentHistogram) {
return new Histogram(source.getNumberOfSignificantValueDigits());
} else if (source instanceof AtomicHistogram) {
return new Histogram(
source.getLowestDiscernibleValue(),
source.getHighestTrackableValue(),
source.getNumberOfSignificantValueDigits()
);
} else {
throw new IllegalArgumentException("Unsupported histogram class " + source.getClass());
}
}
代码示例来源:origin: vladimir-bukhtoyarov/rolling-metrics
public static Histogram createNonConcurrentCopy(Histogram source) {
if (source instanceof ConcurrentHistogram) {
return new Histogram(source.getNumberOfSignificantValueDigits());
} else if (source instanceof AtomicHistogram) {
return new Histogram(
source.getLowestDiscernibleValue(),
source.getHighestTrackableValue(),
source.getNumberOfSignificantValueDigits()
);
} else {
throw new IllegalArgumentException("Unsupported histogram class " + source.getClass());
}
}
代码示例来源:origin: org.hdrhistogram/HdrHistogram
inactiveHistogram = new InternalAtomicHistogram(
instanceId,
activeHistogram.getLowestDiscernibleValue(),
activeHistogram.getHighestTrackableValue(),
activeHistogram.getNumberOfSignificantValueDigits());
代码示例来源:origin: com.hazelcast.simulator/simulator
histogram.getLowestDiscernibleValue(),
histogram.getHighestTrackableValue(),
histogram.getNumberOfSignificantValueDigits());
内容来源于网络,如有侵权,请联系作者删除!