Skip to content
Snippets Groups Projects
Commit 99d37614 authored by Craig Tiller's avatar Craig Tiller
Browse files

Merge pull request #3015 from grpc/docsdocsdocs

Expanded grpc_server_request_call's docstring
parents 0e67ac2c 1359a126
No related branches found
No related tags found
No related merge requests found
...@@ -589,9 +589,14 @@ grpc_call_error grpc_call_cancel_with_status(grpc_call *call, ...@@ -589,9 +589,14 @@ grpc_call_error grpc_call_cancel_with_status(grpc_call *call,
THREAD SAFETY: grpc_call_destroy is thread-compatible */ THREAD SAFETY: grpc_call_destroy is thread-compatible */
void grpc_call_destroy(grpc_call *call); void grpc_call_destroy(grpc_call *call);
/** Request notification of a new call. 'cq_for_notification' must /** Request notification of a new call.
have been registered to the server via Once a call is received, a notification tagged with \a tag_new is added to
grpc_server_register_completion_queue. */ \a cq_for_notification. \a call, \a details and \a request_metadata are
updated with the appropriate call information. \a cq_bound_to_call is bound
to \a call, and batch operation notifications for that call will be posted
to \a cq_bound_to_call.
Note that \a cq_for_notification must have been registered to the server via
\a grpc_server_register_completion_queue. */
grpc_call_error grpc_server_request_call( grpc_call_error grpc_server_request_call(
grpc_server *server, grpc_call **call, grpc_call_details *details, grpc_server *server, grpc_call **call, grpc_call_details *details,
grpc_metadata_array *request_metadata, grpc_metadata_array *request_metadata,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment