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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
90391dbb
Commit
90391dbb
authored
9 years ago
by
Przemysław Sobala
Browse files
Options
Downloads
Patches
Plain Diff
Change CallData status before notifying CompletionQueue
parent
7593cff3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/cpp/helloworld/greeter_async_server.cc
+4
-3
4 additions, 3 deletions
examples/cpp/helloworld/greeter_async_server.cc
with
4 additions
and
3 deletions
examples/cpp/helloworld/greeter_async_server.cc
+
4
−
3
View file @
90391dbb
...
@@ -94,6 +94,9 @@ class ServerImpl final {
...
@@ -94,6 +94,9 @@ class ServerImpl final {
void
Proceed
()
{
void
Proceed
()
{
if
(
status_
==
CREATE
)
{
if
(
status_
==
CREATE
)
{
// Make this instance progress to the PROCESS state.
status_
=
PROCESS
;
// As part of the initial CREATE state, we *request* that the system
// As part of the initial CREATE state, we *request* that the system
// start processing SayHello requests. In this request, "this" acts are
// start processing SayHello requests. In this request, "this" acts are
// the tag uniquely identifying the request (so that different CallData
// the tag uniquely identifying the request (so that different CallData
...
@@ -101,8 +104,6 @@ class ServerImpl final {
...
@@ -101,8 +104,6 @@ class ServerImpl final {
// the memory address of this CallData instance.
// the memory address of this CallData instance.
service_
->
RequestSayHello
(
&
ctx_
,
&
request_
,
&
responder_
,
cq_
,
cq_
,
service_
->
RequestSayHello
(
&
ctx_
,
&
request_
,
&
responder_
,
cq_
,
cq_
,
this
);
this
);
// Make this instance progress to the PROCESS state.
status_
=
PROCESS
;
}
else
if
(
status_
==
PROCESS
)
{
}
else
if
(
status_
==
PROCESS
)
{
// Spawn a new CallData instance to serve new clients while we process
// Spawn a new CallData instance to serve new clients while we process
// the one for this CallData. The instance will deallocate itself as
// the one for this CallData. The instance will deallocate itself as
...
@@ -116,8 +117,8 @@ class ServerImpl final {
...
@@ -116,8 +117,8 @@ class ServerImpl final {
// And we are done! Let the gRPC runtime know we've finished, using the
// And we are done! Let the gRPC runtime know we've finished, using the
// memory address of this instance as the uniquely identifying tag for
// memory address of this instance as the uniquely identifying tag for
// the event.
// the event.
responder_
.
Finish
(
reply_
,
Status
::
OK
,
this
);
status_
=
FINISH
;
status_
=
FINISH
;
responder_
.
Finish
(
reply_
,
Status
::
OK
,
this
);
}
else
{
}
else
{
GPR_ASSERT
(
status_
==
FINISH
);
GPR_ASSERT
(
status_
==
FINISH
);
// Once in the FINISH state, deallocate ourselves (CallData).
// Once in the FINISH state, deallocate ourselves (CallData).
...
...
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
register
or
sign in
to comment