如何等待gRPC服务器连接?

时间:2017-08-07 12:46:47

标签: c# grpc

我正在尝试使用C#中的客户端和Python中的服务器运行Helloworld示例。

当我手动启动服务器然后启动客户端时,客户端可以成功连接到服务器并调用SayHello方法。

现在,我已经配置了我的IDE(Visual Studio)来同时启动客户端和服务器。客户端失败并抛出RpcException

An unhandled exception of type 'Grpc.Core.RpcException' occurred in mscorlib.dll
Additional information: Status(StatusCode=Unavailable, Detail="Connect Failed")

在这一行:

var reply = client.SayHello(new HelloRequest { Name = user });

问题

是否有一种好方法可以等待建立连接?

客户代码(from grpc/examples)

using System;
using Grpc.Core;
using Helloworld;

namespace CSharpClient
{
    class Program
    {
        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);

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

1 个答案:

答案 0 :(得分:6)

您可以使用CallOptions中的“WaitForReady”选项(默认情况下已关闭)等待服务器可用。使用

var reply = client.SayHello(new HelloRequest { Name = user }, new CallOptions().WithWaitForReady(true));

会产生预期的效果。

此处介绍了该选项: https://github.com/grpc/grpc/pull/8828/files