AntGrpcShared

This project generates the server and client gRPC messaging protocols for other projects to use. Two protocol files are defined - ant_radio.proto and ant_channel.proto. These are compiled by the protobuf compiler into C# classes, yielding source files for clients and servers, which in turn are compiled into the class library.

  About gRPC

gRPC is a Google defined protocol for remote procedure calls. It is the recommended RPC to use.

Servers/services will derive from gRPCAntRadio.gRPCAntRadioBase and gRPCAntChannel.gRPCAntChannelBase.

Clients will reference gRPCAntRadio.gRPCAntRadioClient and gRPCAntChannel.gRPCAntChannelClient.

  Implementation

This is a minimal implementation that supports the examples. It will be expanded upon in the near future.

See Also

Other Resources