Solution Review: Applying gRPC API Versioning
Review the solution to applying gRPC API versioning techniques.
We'll cover the following...
Overview
The code widget below shows the complete solution to the exercise where the server-side API was updated while retaining its compatibility with the old version of the client.
syntax = "proto3"; option csharp_namespace = "BasicGrpcService"; package basic_grpc_service; service Chatbot { rpc SendMessage (ChatRequest) returns (ChatReply); } message ChatRequest { string name = 1; string message = 2; } message ChatReply { string message = 1; }
Solution to updating the server-side API while retaining its compatibility with the client