public virtual global::Grpc.Health.V1.HealthCheckResponse Check(global::Grpc.Health.V1.HealthCheckRequest request, Metadata headers = null, DateTime?deadline = null, CancellationToken cancellationToken = default(CancellationToken))
 {
     return(Check(request, new CallOptions(headers, deadline, cancellationToken)));
 }
 public virtual AsyncUnaryCall <global::Grpc.Health.V1.HealthCheckResponse> CheckAsync(global::Grpc.Health.V1.HealthCheckRequest request, CallOptions options)
 {
     return(CallInvoker.AsyncUnaryCall(__Method_Check, null, options, request));
 }
 public virtual global::System.Threading.Tasks.Task <global::Grpc.Health.V1.HealthCheckResponse> Check(global::Grpc.Health.V1.HealthCheckRequest request, ServerCallContext context)
 {
     throw new RpcException(new Status(StatusCode.Unimplemented, ""));
 }
示例#4
0
 public virtual grpc::AsyncUnaryCall <global::Grpc.Health.V1.HealthCheckResponse> CheckAsync(global::Grpc.Health.V1.HealthCheckRequest request, grpc::Metadata headers = null, global::System.DateTime?deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
 {
     return(CheckAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken)));
 }
 public virtual global::Grpc.Health.V1.HealthCheckResponse Check(global::Grpc.Health.V1.HealthCheckRequest request, CallOptions options)
 {
     return(CallInvoker.BlockingUnaryCall(__Method_Check, null, options, request));
 }
示例#6
0
 /// <summary>
 /// Performs a watch for the serving status of the requested service.
 /// The server will immediately send back a message indicating the current
 /// serving status.  It will then subsequently send a new message whenever
 /// the service's serving status changes.
 ///
 /// If the requested service is unknown when the call is received, the
 /// server will send a message setting the serving status to
 /// SERVICE_UNKNOWN but will *not* terminate the call.  If at some
 /// future point, the serving status of the service becomes known, the
 /// server will send a new message with the service's serving status.
 ///
 /// If the call terminates with status UNIMPLEMENTED, then clients
 /// should assume this method is not supported and should not retry the
 /// call.  If the call terminates with any other status (including OK),
 /// clients should retry the call with appropriate exponential backoff.
 /// </summary>
 /// <param name="request">The request received from the client.</param>
 /// <param name="responseStream">Used for sending responses back to the client.</param>
 /// <param name="context">The context of the server-side call handler being invoked.</param>
 /// <returns>A task indicating completion of the handler.</returns>
 public virtual global::System.Threading.Tasks.Task Watch(global::Grpc.Health.V1.HealthCheckRequest request, grpc::IServerStreamWriter <global::Grpc.Health.V1.HealthCheckResponse> responseStream, grpc::ServerCallContext context)
 {
     throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
 }
示例#7
0
 /// <summary>
 /// Performs a watch for the serving status of the requested service.
 /// The server will immediately send back a message indicating the current
 /// serving status.  It will then subsequently send a new message whenever
 /// the service's serving status changes.
 ///
 /// If the requested service is unknown when the call is received, the
 /// server will send a message setting the serving status to
 /// SERVICE_UNKNOWN but will *not* terminate the call.  If at some
 /// future point, the serving status of the service becomes known, the
 /// server will send a new message with the service's serving status.
 ///
 /// If the call terminates with status UNIMPLEMENTED, then clients
 /// should assume this method is not supported and should not retry the
 /// call.  If the call terminates with any other status (including OK),
 /// clients should retry the call with appropriate exponential backoff.
 /// </summary>
 /// <param name="request">The request to send to the server.</param>
 /// <param name="options">The options for the call.</param>
 /// <returns>The call object.</returns>
 public virtual grpc::AsyncServerStreamingCall <global::Grpc.Health.V1.HealthCheckResponse> Watch(global::Grpc.Health.V1.HealthCheckRequest request, grpc::CallOptions options)
 {
     return(CallInvoker.AsyncServerStreamingCall(__Method_Watch, null, options, request));
 }
示例#8
0
            public AsyncUnaryCall <global::Grpc.Health.V1.HealthCheckResponse> CheckAsync(global::Grpc.Health.V1.HealthCheckRequest request, CallOptions options)
            {
                var call = CreateCall(__Method_Check, options);

                return(Calls.AsyncUnaryCall(call, request));
            }
示例#9
0
            public AsyncUnaryCall <global::Grpc.Health.V1.HealthCheckResponse> CheckAsync(global::Grpc.Health.V1.HealthCheckRequest request, Metadata headers = null, DateTime?deadline = null, CancellationToken cancellationToken = default(CancellationToken))
            {
                var call = CreateCall(__Method_Check, new CallOptions(headers, deadline, cancellationToken));

                return(Calls.AsyncUnaryCall(call, request));
            }
示例#10
0
            public global::Grpc.Health.V1.HealthCheckResponse Check(global::Grpc.Health.V1.HealthCheckRequest request, CallOptions options)
            {
                var call = CreateCall(__Method_Check, options);

                return(Calls.BlockingUnaryCall(call, request));
            }