Disables 'wait for ready' feature for the call. This method should be rarely used because the default is without 'wait for ready'.
()
| 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 |