org.apache.hadoop.util.Time.monotonicNowNanos()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(1.7k)|赞(0)|评价(0)|浏览(144)

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

Time.monotonicNowNanos介绍

[英]Same as #monotonicNow() but returns its result in nanoseconds. Note that this is subject to the same resolution constraints as System#nanoTime().
[中]与#monotonicNow()相同,但以纳秒为单位返回结果。请注意,这与系统#nanoTime()受相同的分辨率约束。

代码示例

代码示例来源:origin: org.apache.hadoop/hadoop-common

/**
  * Same as {@link #monotonicNow()} but returns its result in nanoseconds.
  * Note that this is subject to the same resolution constraints as
  * {@link System#nanoTime()}.
  * @return a monotonic clock that counts in nanoseconds.
  */
 public long monotonicNowNanos() {
  return Time.monotonicNowNanos();
 }
}

代码示例来源:origin: io.hops/hadoop-common

/**
  * Same as {@link #monotonicNow()} but returns its result in nanoseconds.
  * Note that this is subject to the same resolution constraints as
  * {@link System#nanoTime()}.
  * @return a monotonic clock that counts in nanoseconds.
  */
 public long monotonicNowNanos() {
  return Time.monotonicNowNanos();
 }
}

代码示例来源:origin: ch.cern.hadoop/hadoop-common

/**
  * Same as {@link #monotonicNow()} but returns its result in nanoseconds.
  * Note that this is subject to the same resolution constraints as
  * {@link System#nanoTime()}.
  * @return a monotonic clock that counts in nanoseconds.
  */
 public long monotonicNowNanos() {
  return Time.monotonicNowNanos();
 }
}

代码示例来源:origin: io.prestosql.hadoop/hadoop-apache

/**
  * Same as {@link #monotonicNow()} but returns its result in nanoseconds.
  * Note that this is subject to the same resolution constraints as
  * {@link System#nanoTime()}.
  * @return a monotonic clock that counts in nanoseconds.
  */
 public long monotonicNowNanos() {
  return Time.monotonicNowNanos();
 }
}

相关文章

微信公众号

最新文章

更多