ytechie / Grpc-Sample-Using-.NET-Core---BloomRPC

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Grpc Sample Using .NET Core + BloomRPC

A working .NET Core sample that publishes a simple gRPC service that can be consumed by the BloomRPC Client.

Simply run the project, and configure BloomRPC as show below.

Bloom RPC Configuration

Background

This is basically a stock RPC sample, but with the following addition:

   webBuilder.ConfigureKestrel(options =>
   {
       // This endpoint will use HTTP/2 and HTTPS on port 5001.
       options.Listen(IPAddress.Any, 5001, listenOptions =>
       {
           listenOptions.Protocols = HttpProtocols.Http2;
       });
   });

About


Languages

Language:C# 100.0%