C#中使用gRPC

來源:互聯網
上載者:User
由於有NuGet,使得C#在設定項目時非常簡單。

1. 在NuGet中添加ProtocolBuffer和gRPC引用

protocol buffer 3.0版本,在NuGet外掛程式介面選擇Include Prerelease,尋找google protocol buffer。
如果不選擇include rerelease,尋找到的protocol buffer是2.4的,無法編譯

2. 定義proto

設計proto協議檔案,包括服務合約和資料。gRPC必須使用protocol buffer3.0版本,所以syntax設定為proto3。
Greeter是服務名稱
HelloRequest是請求資料
HelloReply是回複資料

syntax = "proto3";option java_multiple_files = true;option java_package = "io.grpc.examples.helloworld";option java_outer_classname = "HelloWorldProto";option objc_class_prefix = "HLW";package helloworld;// The greeting service definition.service Greeter {  // Sends a greeting  rpc SayHello (HelloRequest) returns (HelloReply) {}}// The request message containing the user's name.message HelloRequest {  string name = 1;}// The response message containing the greetingsmessage HelloReply {  string message = 1;}

3. 產生proto訪問類

定義proto檔案後,通過protocol buffer3.0提供的protoc.exe工具產生訪問類。這裡使用gRPC定義的protoc的C#外掛程式grpc_csharp_plugin.exe,而不是使用protoGen.exe。
將以下幾個檔案放在同一個檔案夾中:

grpc_csharp_plugin.exehelloworld.protoprotoc.exe

建立一個bat檔案,編寫如下命令列:

protoc.exe -I=. --csharp_out=. --grpc_out=. --plugin=protoc-gen-grpc=grpc_csharp_plugin.exe helloworld.proto

執行bat檔案,得到proto的訪問類:

helloworld.cshelloworldGrpc.cs

4. 建立C#項目

將兩個訪問類檔案添加到C#項目中,將gRPC的C# example拷貝到Program.cs中,編譯通過。

以上就是C#中使用gRPC的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.