本文整理了Java中io.opencensus.trace.Tracing.getClock()
方法的一些代码示例,展示了Tracing.getClock()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Tracing.getClock()
方法的具体详情如下:
包路径:io.opencensus.trace.Tracing
类名称:Tracing
方法名:getClock
[英]Returns the global Clock.
[中]返回全局时钟。
代码示例来源:origin: census-instrumentation/opencensus-java
@Test
public void implementationOfClock() {
assertThat(Tracing.getClock()).isInstanceOf(MillisClock.class);
}
代码示例来源:origin: census-instrumentation/opencensus-java
@Test
public void implementationOfClock() {
assertThat(Tracing.getClock()).isInstanceOf(MillisClock.class);
}
代码示例来源:origin: census-instrumentation/opencensus-java
Optional.ofNullable(sd.getEndTimestamp()).orElseGet(() -> Tracing.getClock().now());
final long endTime = timestampToNanos(endTimestamp);
final long duration = endTime - startTime;
内容来源于网络,如有侵权,请联系作者删除!