(Builder builder)
| 85 | private final Integer onReadyThreshold; |
| 86 | |
| 87 | private CallOptions(Builder builder) { |
| 88 | this.deadline = builder.deadline; |
| 89 | this.executor = builder.executor; |
| 90 | this.authority = builder.authority; |
| 91 | this.credentials = builder.credentials; |
| 92 | this.compressorName = builder.compressorName; |
| 93 | this.customOptions = builder.customOptions; |
| 94 | this.streamTracerFactories = builder.streamTracerFactories; |
| 95 | this.waitForReady = builder.waitForReady; |
| 96 | this.maxInboundMessageSize = builder.maxInboundMessageSize; |
| 97 | this.maxOutboundMessageSize = builder.maxOutboundMessageSize; |
| 98 | this.onReadyThreshold = builder.onReadyThreshold; |
| 99 | } |
| 100 | |
| 101 | static class Builder { |
| 102 | Deadline deadline; |
nothing calls this directly
no outgoing calls
no test coverage detected