diff options
Diffstat (limited to 'src/compiler/cpp_generator.cc')
-rw-r--r-- | src/compiler/cpp_generator.cc | 6 |
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, |