如何使用protobuf发送自定义错误消息

时间:2019-02-01 21:09:49

标签: protocol-buffers proto google-protocol-buffer

syntax = "proto3";
package hello;

service HelloService {
    rpc SayHello(HelloReq) returns (HelloResp) {};
}

message HelloReq {
    string Name = 1;
}

message HelloResp {
    string Result = 1;
}

message CustomError {
    string Error = 1;
}

如果请求中有错误,我可以让我的服务器发送CustomError吗?

0 个答案:

没有答案