stub: disableAutoInboundFlowControl javadoc correction (#4785)

The docs refer to the wrong places where this feature is ignored.
This commit is contained in:
zpencer 2018-08-23 15:54:47 -07:00 committed by GitHub
parent e9b6568450
commit 0d79e7a13c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -84,9 +84,9 @@ public abstract class CallStreamObserver<V> implements StreamObserver<V> {
* <li>{@link io.grpc.MethodDescriptor.MethodType#UNARY} operations on both the * <li>{@link io.grpc.MethodDescriptor.MethodType#UNARY} operations on both the
* client and server. * client and server.
* </li> * </li>
* <li>{@link io.grpc.MethodDescriptor.MethodType#CLIENT_STREAMING} operations on the server. * <li>{@link io.grpc.MethodDescriptor.MethodType#CLIENT_STREAMING} operations on the client.
* </li> * </li>
* <li>{@link io.grpc.MethodDescriptor.MethodType#SERVER_STREAMING} operations on the client. * <li>{@link io.grpc.MethodDescriptor.MethodType#SERVER_STREAMING} operations on the server.
* </li> * </li>
* </ul> * </ul>
* </p> * </p>