gRPC C++ windows程序实践(二)1. 编写proto文件2. 生成pb文件3. 创建gRPC工程
这篇文章主要介绍如何基于gRPC工程编译生成的文件进行实际应用开发,代码参照 grpc\examples\cpp\helloworld 目录下的示例代码。1. 编写proto文件创建example.proto文件如下图:syntax = "proto3";package testpack;// The greeting service definition.service Greeter { // Sends a greeting rpc Say (Request) re