hellostreamingworld 示例实现

github 的 markdown 好麻烦。。。

Posted by cj on July 15, 2016

文件夹examples/protos 内有个 hellostreamingworld.proto,但是 examples/cpp 内没有对应的示例代码。我参考 route_guide 和 helloworld 两个示例,写出了这份程序。

  1. 生成cc 文件

     protoc --cpp_out=. hellostreamingworld.proto 
     protoc --grpc_out=. --plugin=protoc-gen-grpc="path/to/cpp-plugin.exe" hellostreamingworld.proto
    
  2. 建立 grpc_streaming_greeter_client 工程

    添加第1步生成的4个文件、设置工程属性、添加引用库路径、包含库等设置步骤已在Windows 下 gRPC 安装小记一文写出,不再赘述。 查看代码

  3. 建立 grpc_streaming_greeter_server 工程,项目设置同上。

    查看代码

  4. 测试

    先后运行 server 与 client 程序,client 输出3行 “Greeter received: hello world”,验证无误。