aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compiler
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2018-10-31 01:02:07 -0700
committerGravatar Vijay Pai <vpai@google.com>2018-10-31 01:02:07 -0700
commit932abf48a3fd0757a05bdbae4038c20fd521f312 (patch)
tree74c60a14a3d9e6b37de5def54ff51065a893e860 /src/compiler
parent2f47137a6e4dc05df4e09e47348aadbe21889d13 (diff)
Address reviewer comments.
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/cpp_generator.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/compiler/cpp_generator.cc b/src/compiler/cpp_generator.cc
index fcff75a420..34d5beb653 100644
--- a/src/compiler/cpp_generator.cc
+++ b/src/compiler/cpp_generator.cc
@@ -926,8 +926,11 @@ void PrintHeaderServerMethodCallback(
"Method$(context, request, response, controller);\n"
" }, this));\n");
} else if (ClientOnlyStreaming(method)) {
+ // TODO(vjpai): Add in code generation for all streaming methods
} else if (ServerOnlyStreaming(method)) {
+ // TODO(vjpai): Add in code generation for all streaming methods
} else if (method->BidiStreaming()) {
+ // TODO(vjpai): Add in code generation for all streaming methods
}
printer->Print(*vars, "}\n");
printer->Print(*vars,
@@ -975,8 +978,11 @@ void PrintHeaderServerMethodRawCallback(
"Method$(context, request, response, controller);\n"
" }, this));\n");
} else if (ClientOnlyStreaming(method)) {
+ // TODO(vjpai): Add in code generation for all streaming methods
} else if (ServerOnlyStreaming(method)) {
+ // TODO(vjpai): Add in code generation for all streaming methods
} else if (method->BidiStreaming()) {
+ // TODO(vjpai): Add in code generation for all streaming methods
}
printer->Print(*vars, "}\n");
printer->Print(*vars,