diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-06-28 16:03:51 -0700 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-06-28 16:03:51 -0700 |
commit | 11075585588c7bd5c6bb50a9d85d7500765889b5 (patch) | |
tree | 7f90d1260c0e6830e65fbd4e48fc523e2fcd8988 /include | |
parent | d7b68e72f55e34cafd0042623b707814a6c2b64e (diff) | |
parent | 5c7bfc4fa47e979aa482fbb365ba55d7382b5321 (diff) |
Merge github.com:grpc/grpc into tis-but-thy-name
Diffstat (limited to 'include')
-rw-r--r-- | include/grpc/grpc.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/grpc/grpc.h b/include/grpc/grpc.h index bb6753a9bb..a24506a8a5 100644 --- a/include/grpc/grpc.h +++ b/include/grpc/grpc.h @@ -410,7 +410,9 @@ grpc_call *grpc_channel_create_registered_call( completion of type 'tag' to the completion queue bound to the call. The order of ops specified in the batch has no significance. Only one operation of each type can be active at once in any given - batch. + batch. You must call grpc_completion_queue_next or + grpc_completion_queue_pluck on the completion queue associated with 'call' + for work to be performed. THREAD SAFETY: access to grpc_call_start_batch in multi-threaded environment needs to be synchronized. As an optimization, you may synchronize batches containing just send operations independently from batches containing just |