HomeSort by relevance Sort by last modified time
    Searched refs:initialBackoffNanos (Results 1 - 5 of 5) sorted by null

  /external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
RetryPolicy.java 35 final long initialBackoffNanos;
50 long initialBackoffNanos,
55 this.initialBackoffNanos = initialBackoffNanos;
65 initialBackoffNanos,
78 && this.initialBackoffNanos == that.initialBackoffNanos
88 .add("initialBackoffNanos", initialBackoffNanos)
ExponentialBackoffPolicy.java 40 private long initialBackoffNanos = TimeUnit.SECONDS.toNanos(1);
45 private long nextBackoffNanos = initialBackoffNanos;
73 ExponentialBackoffPolicy setInitialBackoffNanos(long initialBackoffNanos) {
74 this.initialBackoffNanos = initialBackoffNanos;
ServiceConfigInterceptor.java 212 long initialBackoffNanos = checkNotNull(
216 initialBackoffNanos > 0,
217 "initialBackoffNanos must be greater than 0: %s",
218 initialBackoffNanos);
247 maxAttempts, initialBackoffNanos, maxBackoffNanos, backoffMultiplier,
RetriableStream.java 590 nextBackoffIntervalNanos = retryPolicy.initialBackoffNanos;
671 nextBackoffIntervalNanos = retryPolicy.initialBackoffNanos;
  /external/grpc-grpc-java/core/
grpc-core-1.14.0.jar 

Completed in 276 milliseconds