2016-07-14-grpc-streaming-example
程序员文章站
2024-03-16 09:09:52
...
layout | title | subtitle | date | author | tags |
---|---|---|---|---|---|
post |
hellostreamingworld 示例实现 |
github 的 markdown 好麻烦。。。 |
2016-07-15 |
cj |
gRPC c++ |
文件夹examples/protos 内有个 hellostreamingworld.proto,但是 examples/cpp 内没有对应的示例代码。我参考 route_guide 和 helloworld 两个示例,写出了这份程序。
-
生成cc 文件
protoc --cpp_out=. hellostreamingworld.proto protoc --grpc_out=. --plugin=protoc-gen-grpc="path/to/cpp-plugin.exe" hellostreamingworld.proto
-
建立 grpc_streaming_greeter_client 工程
添加第1步生成的4个文件、设置工程属性、添加引用库路径、包含库等设置步骤已在Windows 下 gRPC 安装小记一文写出,不再赘述。 查看代码
-
建立 grpc_streaming_greeter_server 工程,项目设置同上。
-
测试
先后运行 server 与 client 程序,client 输出3行 "Greeter received: hello world",验证无误。