gRPC官方快速上手學習筆記(c#版)

来源:http://www.cnblogs.com/ypfnet/archive/2017/09/28/7606638.html
-Advertisement-
Play Games

上手前準備工作 支持操作系統:windows、OS X、Linux。實例採用.net、.net core sdk。 The .NET Core SDK command line tools. The .NET framework 4.5 (for OS X and Linux, the open s ...


上手前準備工作

支持操作系統:windows、OS X、Linux。實例採用.net、.net core sdk。

  • The .NET Core SDK command line tools.
  • The .NET framework 4.5 (for OS X and Linux, the open source .NET Framework implementation, “Mono”, at version 4+, is suitable)
  • Git (to download the sample code)

在windows系統開發環境, 採用 Visual Studio開發工具, 需要滿足以下要求:

  • .NET Framework 4.5+
  • Visual Studio 2013 or 2015.
  • Git (to download the sample code)

    在OS X 系統開發環境, 採用Xamarin Studio開發工具, 需要滿足以下要求:

  • Mono 4.4.2+ (or Mono 4+ is sufficient if you manually update NuGet to version 2.12+)
  • Xamarin Studio 6.0+
  • Git (to download the sample code)

    在 Linux 系統開發環境, 採用 the Monodevelop IDE,需要滿足以下要求 :

  • Mono 4.4.2+ (or Mono 4+ is sufficient if you manually update nuget to version 2.12+)
  • MonoDevelop 5.9+
  • A NuGet executable, at version 2.12+ (you’ll need to restore NuGet package dependencies from the command line)
  • Git (to download the sample code)

下載官方demo

git clone -b v1.6.x https://github.com/grpc/grpc
  1. 打開下載的demo文C:\Users\YPF\Desktop\grpc
  2. 進入目錄examples/csharp/helloworld

Build the example

  1. 使用Visual Studio打開Greeter.sln
  2. 在該項目的解決右鍵重新生成解決方案

項目會自動使用NuGet進行必要的package的安裝。

運行 a gRPC application

  1. 運行服務

    > cd GreeterServer/bin/Debug
    > GreeterServer.exe

  2. 運行客戶端

    > cd GreeterClient/bin/Debug
    > GreeterClient.exe

更新 a gRPC service

打開目錄examples/protos/helloworld.proto
將原來的文件修改為如下並保存:

// The greeting service definition.
service Greeter {
  // Sends a greeting
  rpc SayHello (HelloRequest) returns (HelloReply) {}
  // Sends another greeting
  rpc SayHelloAgain (HelloRequest) returns (HelloReply) {}
}

// The request message containing the user's name.
message HelloRequest {
  string name = 1;
}

// The response message containing the greetings
message HelloReply {
  string message = 1;
}

生成 gRPC code

在demo的根目錄(examples/csharp/helloworld)下執行如下命令:

packages\Grpc.Tools.1.6.1\tools\windows_x86\protoc.exe -I../../protos --csharp_out Greeter --grpc_out Greeter ../../protos/helloworld.proto --plugin=protoc-gen-grpc=packages/Grpc.Tools.1.6.1/tools/windows_x86/grpc_csharp_plugin.exe

這裡的Grpc.Tools.1.6.1這個命令必須是跟項目中使用NuGet安裝的版本一致,否則會報錯。

更新並從新運行

修改服務端代碼

GreeterServer/Program.cs

class GreeterImpl : Greeter.GreeterBase
{
    // Server side handler of the SayHello RPC
    public override Task<HelloReply> SayHello(HelloRequest request, ServerCallContext context)
    {
        return Task.FromResult(new HelloReply { Message = "Hello " + request.Name });
    }

    // Server side handler for the SayHelloAgain RPC
    public override Task<HelloReply> SayHelloAgain(HelloRequest request, ServerCallContext context)
    {
        return Task.FromResult(new HelloReply { Message = "Hello again " + request.Name });
    }
}

修改服務端代碼

GreeterClient/Program.cs

public static void Main(string[] args)
{
    Channel channel = new Channel("127.0.0.1:50051", ChannelCredentials.Insecure);

    var client = new Greeter.GreeterClient(channel);
    String user = "you";

    var reply = client.SayHello(new HelloRequest { Name = user });
    Console.WriteLine("Greeting: " + reply.Message);
    
    var secondReply = client.SayHelloAgain(new HelloRequest { Name = user });
    Console.WriteLine("Greeting: " + secondReply.Message);

    channel.ShutdownAsync().Wait();
    Console.WriteLine("Press any key to exit...");
    Console.ReadKey();
}

運行 a gRPC application

  • 運行服務

    cd GreeterServer/bin/Debug
    GreeterServer.exe

  • 運行客戶端

    cd GreeterClient/bin/Debug
    GreeterClient.exe

參考文章:

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1.創建Bundle php app/console generate:bundle --namespace=Home/IndexBundle --format=yml 創建bundle會更新app文件夾下的 appKernel.php config/routing.yml ...
  • code: 文件內容:(yesterday) 感想: 思路很簡單就是打開源文件,然後迴圈,把源文件要替換的內容替換再寫入新文件! ...
  • 咱們繼續看uvw的源碼,這次看的東西比較多,去除底層的一些東西,很多代碼都是連貫的,耦合度也比較高了。主要包括下麵幾個文件的代碼: underlying_type.hpp resource.hpp loop.hpp handle.hpp stream.hpp tcp.hpp 代碼我就不都貼出了,說到 ...
  • using System.Collections; ArrayList arr = new ArrayList(); arr.Add("123"); arr.Add("abc"); string s = "abc"; bool b = arr.Contains(s); Console.WriteLi ...
  • [導航頁 LeetCode專題 Python實現][1] [1]: http://www.cnblogs.com/exploitht/p/7488742.html 相關代碼已經上傳到github: "https://github.com/exploitht/leetcode python" 文中代碼 ...
  • 隨著目前Python行業的薪資水平越來越高,很多人想加入該行業拿高薪。有沒有想通過視頻教程入門的同學們?這份Python3教程全集等你來學習啦! ...
  • 就是用eclipse編程,要先安裝jre(java runtime environment)。 java是一種強類型的語言,在使用變數之前必須申明變數類型。 ...
  • 前一講主要說了jenkins分發的好處《jenkins~集群分發功能和職責處理》,它可以讓具體的節點乾自己具體的事,比如windows環境下的節點,它只負責編譯,發佈windows的生態環境的項目;而linux節點主要負責和它相關的項目,如nodejs,.net core,java,php,pyth ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...