org.HdrHistogram.Histogram.getLowestDiscernibleValue()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(2.3k)|赞(0)|评价(0)|浏览(110)

本文整理了Java中org.HdrHistogram.Histogram.getLowestDiscernibleValue()方法的一些代码示例,展示了Histogram.getLowestDiscernibleValue()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Histogram.getLowestDiscernibleValue()方法的具体详情如下:
包路径:org.HdrHistogram.Histogram
类名称:Histogram
方法名:getLowestDiscernibleValue

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());

相关文章