mirror of https://github.com/grpc/grpc-java.git
stub: default impl for disableAutoRequestWithInitial(int) (#7018)
This commit is contained in:
parent
73d35e336e
commit
24823c741f
|
|
@ -135,7 +135,9 @@ public abstract class CallStreamObserver<V> implements StreamObserver<V> {
|
||||||
*
|
*
|
||||||
* <p>This API is still a work in-progress and will likely change in the future.
|
* <p>This API is still a work in-progress and will likely change in the future.
|
||||||
*/
|
*/
|
||||||
public abstract void disableAutoRequestWithInitial(int request);
|
public void disableAutoRequestWithInitial(int request) {
|
||||||
|
throw new UnsupportedOperationException();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Requests the peer to produce {@code count} more messages to be delivered to the 'inbound'
|
* Requests the peer to produce {@code count} more messages to be delivered to the 'inbound'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue