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

Method request

api/src/main/java/io/grpc/ClientCall.java:212–212  ·  view source on GitHub ↗

Requests up to the given number of messages from the call to be delivered to Listener#onMessage(Object). No additional messages will be delivered. Message delivery is guaranteed to be sequential in the order received. In addition, the listener methods will not be accessed concurrently. W

(int numMessages)

Source from the content-addressed store, hash-verified

210 * @throws IllegalArgumentException if numMessages is negative
211 */
212 public abstract void request(int numMessages);
213
214 /**
215 * Prevent any further processing for this {@code ClientCall}. No further messages may be sent or

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected