溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

C#中g(shù)RPC如何使用

發(fā)布時(shí)間:2021-07-07 15:38:59 來(lái)源:億速云 閱讀:231 作者:Leah 欄目:大數(shù)據(jù)

本篇文章為大家展示了C#中g(shù)RPC如何使用,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。

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

protocol buffer 3.0版本,在NuGet插件界面選擇Include Prerelease,查找google protocol buffer。
如果不選擇include rerelease,查找到的protocol buffer是2.4的,無(wú)法編譯通過(guò)gRPC的example。

2. 定義proto

設(shè)計(jì)proto協(xié)議文件,包括服務(wù)協(xié)議和數(shù)據(jù)。gRPC必須使用protocol buffer3.0版本,所以syntax設(shè)置為proto3。
Greeter是服務(wù)名稱(chēng)
HelloRequest是請(qǐng)求數(shù)據(jù)
HelloReply是回復(fù)數(shù)據(jù)

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訪(fǎng)問(wèn)類(lèi)

定義proto文件后,通過(guò)protocol buffer3.0提供的protoc.exe工具生成訪(fǎng)問(wèn)類(lèi)。這里使用gRPC定義的protoc的C#插件grpc_csharp_plugin.exe,而不是使用protoGen.exe。
將以下幾個(gè)文件放在同一個(gè)文件夾中:

grpc_csharp_plugin.exehelloworld.protoprotoc.exe

創(chuàng)建一個(gè)bat文件,編寫(xiě)如下命令行:

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

執(zhí)行bat文件,得到proto的訪(fǎng)問(wèn)類(lèi):

helloworld.cshelloworldGrpc.cs

上述內(nèi)容就是C#中g(shù)RPC如何使用,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI