MCPcopy Create free account
hub / github.com/grpc/grpc-java / convertToNanos

Method convertToNanos

api/src/main/java/io/grpc/TimeUtils.java:24–31  ·  view source on GitHub ↗
(Duration duration)

Source from the content-addressed store, hash-verified

22 private TimeUtils() {}
23
24 @IgnoreJRERequirement
25 static long convertToNanos(Duration duration) {
26 try {
27 return duration.toNanos();
28 } catch (ArithmeticException tooBig) {
29 return duration.isNegative() ? Long.MIN_VALUE : Long.MAX_VALUE;
30 }
31 }
32}

Callers 8

convertMethod · 0.95
scheduleMethod · 0.80
withDeadlineAfterMethod · 0.80

Calls

no outgoing calls