Home
last modified time | relevance | path

Searched refs:currentBackoffNanos (Results 1 – 1 of 1) sorted by relevance

/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DExponentialBackoffPolicy.java49 long currentBackoffNanos = nextBackoffNanos; in nextBackoffNanos() local
50 nextBackoffNanos = Math.min((long) (currentBackoffNanos * multiplier), maxBackoffNanos); in nextBackoffNanos()
51 return currentBackoffNanos in nextBackoffNanos()
52 + uniformRandom(-jitter * currentBackoffNanos, jitter * currentBackoffNanos); in nextBackoffNanos()