Home
last modified time | relevance | path

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

/external/grpc-grpc-java/core/src/main/java/io/grpc/
DForwardingChannelBuilder.java179 public T maxRetryAttempts(int maxRetryAttempts) { in maxRetryAttempts() method in ForwardingChannelBuilder
180 delegate().maxRetryAttempts(maxRetryAttempts); in maxRetryAttempts()
DManagedChannelBuilder.java371 public T maxRetryAttempts(int maxRetryAttempts) { in maxRetryAttempts() argument
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DAbstractManagedChannelImplBuilder.java128 int maxRetryAttempts = 5; field in AbstractManagedChannelImplBuilder
299 public final T maxRetryAttempts(int maxRetryAttempts) { in maxRetryAttempts() argument
300 this.maxRetryAttempts = maxRetryAttempts; in maxRetryAttempts()
DManagedChannelImpl.java570 retryEnabled, builder.maxRetryAttempts, builder.maxHedgedAttempts); in ManagedChannelImpl()
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
DAbstractManagedChannelImplBuilderTest.java340 public void maxRetryAttempts() { in maxRetryAttempts() method in AbstractManagedChannelImplBuilderTest
342 assertEquals(5, builder.maxRetryAttempts); in maxRetryAttempts()
344 builder.maxRetryAttempts(3); in maxRetryAttempts()
345 assertEquals(3, builder.maxRetryAttempts); in maxRetryAttempts()