Home
last modified time | relevance | path

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

/external/grpc-grpc-java/core/src/main/java/io/grpc/
DCallOptions.java69 private boolean waitForReady; field in CallOptions
150 newOptions.waitForReady = true; in withWaitForReady()
160 newOptions.waitForReady = false; in withoutWaitForReady()
365 return waitForReady; in isWaitForReady()
419 waitForReady = other.waitForReady; in CallOptions()
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DServiceConfigInterceptor.java132 final Boolean waitForReady; field in ServiceConfigInterceptor.MethodInfo
147 waitForReady = ServiceConfigUtil.getWaitForReadyFromMethodConfig(methodConfig); in MethodInfo()
177 timeoutNanos, waitForReady, maxInboundMessageSize, maxOutboundMessageSize, retryPolicy); in hashCode()
187 && Objects.equal(this.waitForReady, that.waitForReady) in equals()
197 .add("waitForReady", waitForReady) in toString()
373 if (info.waitForReady != null) { in interceptCall()
375 info.waitForReady ? callOptions.withWaitForReady() : callOptions.withoutWaitForReady(); in interceptCall()
/external/grpc-grpc/src/php/tests/generated_code/
DAbstractGeneratedCodeTest.php36 $this->assertFalse(self::$client->waitForReady(1));
41 $this->assertTrue(self::$client->waitForReady(250000));
46 $this->assertTrue(self::$client->waitForReady(250000));
47 $this->assertTrue(self::$client->waitForReady(100));
/external/grpc-grpc/src/csharp/Grpc.Core/
DCallOptions.cs210 public CallOptions WithWaitForReady(bool waitForReady = true) in WithWaitForReady()
212 if (waitForReady) in WithWaitForReady()
/external/grpc-grpc/src/php/lib/Grpc/
DBaseStub.php143 public function waitForReady($timeout) function in Grpc\\BaseStub
/external/grpc-grpc/doc/
Dservice_config.md74 'waitForReady': bool,
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
DManagedChannelImplTest.java916 private void subtestFailRpcFromBalancer(boolean waitForReady, boolean drop, boolean shouldFail) { in subtestFailRpcFromBalancer() argument
921 if (waitForReady) { in subtestFailRpcFromBalancer()