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

Method CallOptions

api/src/main/java/io/grpc/CallOptions.java:87–99  ·  view source on GitHub ↗
(Builder builder)

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected