com.newrelic.opentracing.util.TimeUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of newrelic-java-lambda Show documentation
Show all versions of newrelic-java-lambda Show documentation
New Relic OpenTracing Tracer implementation for instrumenting AWS Lambda functions.
The newest version!
/*
* Copyright 2020 New Relic Corporation. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*/
package com.newrelic.opentracing.util;
public final class TimeUtil {
public static final float MICROSECONDS_PER_SECOND = 1000000.0f;
public static final float MILLISECONDS_PER_SECOND = 1000.0f;
public static final long MICROSECONDS_PER_MILLISECOND = 1000;
private TimeUtil() {
}
}