examples: Add a missing space in comment (#5472)

Add a missing space in the comment before requestStream.setOnReadyHandler()
This commit is contained in:
Dan Torrey 2019-03-13 12:27:15 -05:00 committed by Jihun Cho
parent bd77e886d5
commit f155d60e75
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ public class ManualFlowControlClient {
// request() to pull a buffered message from the client. // request() to pull a buffered message from the client.
// //
// Note: the onReadyHandler's invocation is serialized on the same thread pool as the incoming // Note: the onReadyHandler's invocation is serialized on the same thread pool as the incoming
// StreamObserver'sonNext(), onError(), and onComplete() handlers. Blocking the onReadyHandler will prevent // StreamObserver's onNext(), onError(), and onComplete() handlers. Blocking the onReadyHandler will prevent
// additional messages from being processed by the incoming StreamObserver. The onReadyHandler must return // additional messages from being processed by the incoming StreamObserver. The onReadyHandler must return
// in a timely manor or else message processing throughput will suffer. // in a timely manor or else message processing throughput will suffer.
requestStream.setOnReadyHandler(new Runnable() { requestStream.setOnReadyHandler(new Runnable() {