| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 | // Generated by the protocol buffer compiler.  DO NOT EDIT!// source: math.proto#region Designer generated codeusing System;using System.Threading;using System.Threading.Tasks;using Grpc.Core;namespace Math {  public static class Math  {    static readonly string __ServiceName = "math.Math";    static readonly Marshaller<global::Math.DivArgs> __Marshaller_DivArgs = Marshallers.Create((arg) => global::Google.Protobuf.MessageExtensions.ToByteArray(arg), global::Math.DivArgs.Parser.ParseFrom);    static readonly Marshaller<global::Math.DivReply> __Marshaller_DivReply = Marshallers.Create((arg) => global::Google.Protobuf.MessageExtensions.ToByteArray(arg), global::Math.DivReply.Parser.ParseFrom);    static readonly Marshaller<global::Math.FibArgs> __Marshaller_FibArgs = Marshallers.Create((arg) => global::Google.Protobuf.MessageExtensions.ToByteArray(arg), global::Math.FibArgs.Parser.ParseFrom);    static readonly Marshaller<global::Math.Num> __Marshaller_Num = Marshallers.Create((arg) => global::Google.Protobuf.MessageExtensions.ToByteArray(arg), global::Math.Num.Parser.ParseFrom);    static readonly Method<global::Math.DivArgs, global::Math.DivReply> __Method_Div = new Method<global::Math.DivArgs, global::Math.DivReply>(        MethodType.Unary,        __ServiceName,        "Div",        __Marshaller_DivArgs,        __Marshaller_DivReply);    static readonly Method<global::Math.DivArgs, global::Math.DivReply> __Method_DivMany = new Method<global::Math.DivArgs, global::Math.DivReply>(        MethodType.DuplexStreaming,        __ServiceName,        "DivMany",        __Marshaller_DivArgs,        __Marshaller_DivReply);    static readonly Method<global::Math.FibArgs, global::Math.Num> __Method_Fib = new Method<global::Math.FibArgs, global::Math.Num>(        MethodType.ServerStreaming,        __ServiceName,        "Fib",        __Marshaller_FibArgs,        __Marshaller_Num);    static readonly Method<global::Math.Num, global::Math.Num> __Method_Sum = new Method<global::Math.Num, global::Math.Num>(        MethodType.ClientStreaming,        __ServiceName,        "Sum",        __Marshaller_Num,        __Marshaller_Num);    // service descriptor    public static global::Google.Protobuf.Reflection.ServiceDescriptor Descriptor    {      get { return global::Math.MathReflection.Descriptor.Services[0]; }    }    // client interface    public interface IMathClient    {      global::Math.DivReply Div(global::Math.DivArgs request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default(CancellationToken));      global::Math.DivReply Div(global::Math.DivArgs request, CallOptions options);      AsyncUnaryCall<global::Math.DivReply> DivAsync(global::Math.DivArgs request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default(CancellationToken));      AsyncUnaryCall<global::Math.DivReply> DivAsync(global::Math.DivArgs request, CallOptions options);      AsyncDuplexStreamingCall<global::Math.DivArgs, global::Math.DivReply> DivMany(Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default(CancellationToken));      AsyncDuplexStreamingCall<global::Math.DivArgs, global::Math.DivReply> DivMany(CallOptions options);      AsyncServerStreamingCall<global::Math.Num> Fib(global::Math.FibArgs request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default(CancellationToken));      AsyncServerStreamingCall<global::Math.Num> Fib(global::Math.FibArgs request, CallOptions options);      AsyncClientStreamingCall<global::Math.Num, global::Math.Num> Sum(Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default(CancellationToken));      AsyncClientStreamingCall<global::Math.Num, global::Math.Num> Sum(CallOptions options);    }    // server-side interface    public interface IMath    {      Task<global::Math.DivReply> Div(global::Math.DivArgs request, ServerCallContext context);      Task DivMany(IAsyncStreamReader<global::Math.DivArgs> requestStream, IServerStreamWriter<global::Math.DivReply> responseStream, ServerCallContext context);      Task Fib(global::Math.FibArgs request, IServerStreamWriter<global::Math.Num> responseStream, ServerCallContext context);      Task<global::Math.Num> Sum(IAsyncStreamReader<global::Math.Num> requestStream, ServerCallContext context);    }    // client stub    public class MathClient : ClientBase, IMathClient    {      public MathClient(Channel channel) : base(channel)      {      }      public global::Math.DivReply Div(global::Math.DivArgs request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default(CancellationToken))      {        var call = CreateCall(__Method_Div, new CallOptions(headers, deadline, cancellationToken));        return Calls.BlockingUnaryCall(call, request);      }      public global::Math.DivReply Div(global::Math.DivArgs request, CallOptions options)      {        var call = CreateCall(__Method_Div, options);        return Calls.BlockingUnaryCall(call, request);      }      public AsyncUnaryCall<global::Math.DivReply> DivAsync(global::Math.DivArgs request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default(CancellationToken))      {        var call = CreateCall(__Method_Div, new CallOptions(headers, deadline, cancellationToken));        return Calls.AsyncUnaryCall(call, request);      }      public AsyncUnaryCall<global::Math.DivReply> DivAsync(global::Math.DivArgs request, CallOptions options)      {        var call = CreateCall(__Method_Div, options);        return Calls.AsyncUnaryCall(call, request);      }      public AsyncDuplexStreamingCall<global::Math.DivArgs, global::Math.DivReply> DivMany(Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default(CancellationToken))      {        var call = CreateCall(__Method_DivMany, new CallOptions(headers, deadline, cancellationToken));        return Calls.AsyncDuplexStreamingCall(call);      }      public AsyncDuplexStreamingCall<global::Math.DivArgs, global::Math.DivReply> DivMany(CallOptions options)      {        var call = CreateCall(__Method_DivMany, options);        return Calls.AsyncDuplexStreamingCall(call);      }      public AsyncServerStreamingCall<global::Math.Num> Fib(global::Math.FibArgs request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default(CancellationToken))      {        var call = CreateCall(__Method_Fib, new CallOptions(headers, deadline, cancellationToken));        return Calls.AsyncServerStreamingCall(call, request);      }      public AsyncServerStreamingCall<global::Math.Num> Fib(global::Math.FibArgs request, CallOptions options)      {        var call = CreateCall(__Method_Fib, options);        return Calls.AsyncServerStreamingCall(call, request);      }      public AsyncClientStreamingCall<global::Math.Num, global::Math.Num> Sum(Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default(CancellationToken))      {        var call = CreateCall(__Method_Sum, new CallOptions(headers, deadline, cancellationToken));        return Calls.AsyncClientStreamingCall(call);      }      public AsyncClientStreamingCall<global::Math.Num, global::Math.Num> Sum(CallOptions options)      {        var call = CreateCall(__Method_Sum, options);        return Calls.AsyncClientStreamingCall(call);      }    }    // creates service definition that can be registered with a server    public static ServerServiceDefinition BindService(IMath serviceImpl)    {      return ServerServiceDefinition.CreateBuilder(__ServiceName)          .AddMethod(__Method_Div, serviceImpl.Div)          .AddMethod(__Method_DivMany, serviceImpl.DivMany)          .AddMethod(__Method_Fib, serviceImpl.Fib)          .AddMethod(__Method_Sum, serviceImpl.Sum).Build();    }    // creates a new client    public static MathClient NewClient(Channel channel)    {      return new MathClient(channel);    }  }}#endregion
 |