aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-05-04 19:21:25 -0700
committerGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-05-04 19:21:25 -0700
commit5a5dafa7765c04083b33265c5f5d33f79a6ab9ba (patch)
tree7ee3250adc5f8c7be3bcde78ad8edcac3e672d47 /include
parentfeb8e74f88f33769e5d29a0d496b10df6b2838fe (diff)
parented4d89e1f51fa06cc5e8cb231547b837ca1d1fa8 (diff)
Merge pull request #6409 from jtattermusch/master
Improve docs on GRPC_OP_RECV_CLOSE_ON_SERVER
Diffstat (limited to 'include')
-rw-r--r--include/grpc/impl/codegen/grpc_types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/grpc/impl/codegen/grpc_types.h b/include/grpc/impl/codegen/grpc_types.h
index 4c7373006b..7b20cc14d4 100644
--- a/include/grpc/impl/codegen/grpc_types.h
+++ b/include/grpc/impl/codegen/grpc_types.h
@@ -307,7 +307,9 @@ typedef enum {
GRPC_OP_RECV_STATUS_ON_CLIENT,
/** Receive close on the server: one and only one must be made on the
server.
- This op completes after the close has been received by the server. */
+ This op completes after the close has been received by the server.
+ This operation always succeeds, meaning ops paired with this operation
+ will also appear to succeed, even though they may not have. */
GRPC_OP_RECV_CLOSE_ON_SERVER
} grpc_op_type;