Category: gitlab, gitlab

gRPC which known as Google Remote Procedure Call is an open source RPC(Remote Procedure Call) framework. Protobuf is a type-safe binary transfer format that is designed for efficient network communications.

A service is a collection of functions which server can performs.

The gRPC server reflection can be used by the client to determine the methods and types expose in the gRPC server. Following is the way to compile and run the gRPC service.

Related Articles