Can protobuf service method return primitive type?

No, you cannot use a primitive type as either the request or response. You must use a message type.

This is important because a message type can be extended later, in case you decide you want to add a new parameter or return some additional data.

Leave a Comment