Home
last modified time | relevance | path

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

/external/grpc-grpc-java/core/src/main/java/io/grpc/
DForwardingChannelBuilder.java185 public T maxHedgedAttempts(int maxHedgedAttempts) { in maxHedgedAttempts() method in ForwardingChannelBuilder
186 delegate().maxHedgedAttempts(maxHedgedAttempts); in maxHedgedAttempts()
DManagedChannelBuilder.java386 public T maxHedgedAttempts(int maxHedgedAttempts) { in maxHedgedAttempts() argument
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DAbstractManagedChannelImplBuilder.java129 int maxHedgedAttempts = 5; field in AbstractManagedChannelImplBuilder
305 public final T maxHedgedAttempts(int maxHedgedAttempts) { in maxHedgedAttempts() argument
306 this.maxHedgedAttempts = maxHedgedAttempts; in maxHedgedAttempts()
DManagedChannelImpl.java570 retryEnabled, builder.maxRetryAttempts, builder.maxHedgedAttempts); in ManagedChannelImpl()
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
DAbstractManagedChannelImplBuilderTest.java349 public void maxHedgedAttempts() { in maxHedgedAttempts() method in AbstractManagedChannelImplBuilderTest
351 assertEquals(5, builder.maxHedgedAttempts); in maxHedgedAttempts()
353 builder.maxHedgedAttempts(3); in maxHedgedAttempts()
354 assertEquals(3, builder.maxHedgedAttempts); in maxHedgedAttempts()