Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
58471775
Commit
58471775
authored
Aug 1, 2015
by
Craig Tiller
Browse files
Options
Downloads
Patches
Plain Diff
Add documentation outline
parent
e1b0e6ee
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/grpc/grpc.h
+8
-1
8 additions, 1 deletion
include/grpc/grpc.h
with
8 additions
and
1 deletion
include/grpc/grpc.h
+
8
−
1
View file @
58471775
...
...
@@ -349,7 +349,11 @@ typedef struct grpc_op {
}
data
;
}
grpc_op
;
/* Propagation bits: this can be bitwise or-ed to form propagation_mask for
* grpc_call */
/** Propagate deadline */
#define GRPC_PROPAGATE_DEADLINE 1
/** Propagate census context */
#define GRPC_PROPAGATE_CENSUS_CONTEXT 2
/* TODO(ctiller):
#define GRPC_PROPAGATE_CANCELLATION 4
...
...
@@ -434,7 +438,10 @@ void grpc_channel_watch_connectivity_state(
/** Create a call given a grpc_channel, in order to call 'method'. All
completions are sent to 'completion_queue'. 'method' and 'host' need only
live through the invocation of this function. */
live through the invocation of this function.
If parent_call is non-NULL, it must be a server-side call. It will be used
to propagate properties from the server call to this new client call.
*/
grpc_call
*
grpc_channel_create_call
(
grpc_channel
*
channel
,
grpc_call
*
parent_call
,
gpr_uint32
propagation_mask
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment