您好,登錄后才能下訂單哦!
本篇文章為大家展示了C#中gRPC如何使用,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
protocol buffer 3.0版本,在NuGet插件界面選擇Include Prerelease,查找google protocol buffer。
如果不選擇include rerelease,查找到的protocol buffer是2.4的,無法編譯通過gRPC的example。
設計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; }
定義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
上述內容就是C#中gRPC如何使用,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。