MCPcopy Create free account
hub / github.com/grpc/grpc-java / withoutWaitForReady

Method withoutWaitForReady

api/src/main/java/io/grpc/CallOptions.java:211–215  ·  view source on GitHub ↗

Disables 'wait for ready' feature for the call. This method should be rarely used because the default is without 'wait for ready'.

()

Source from the content-addressed store, hash-verified

209 * This method should be rarely used because the default is without 'wait for ready'.
210 */
211 public CallOptions withoutWaitForReady() {
212 Builder builder = toBuilder(this);
213 builder.waitForReady = Boolean.FALSE;
214 return builder.build();
215 }
216
217 /**
218 * Specifies how many bytes must be queued before the call is

Callers 8

panic_atStartMethod · 0.80
newCallMethod · 0.80
applyMethodConfigMethod · 0.80
getWaitForReadyMethod · 0.80

Calls 2

toBuilderMethod · 0.95
buildMethod · 0.95

Tested by 7

panic_atStartMethod · 0.64
newCallMethod · 0.64
getWaitForReadyMethod · 0.64