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)
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected