All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.grpc.health.v1.HealthGrpc Maven / Gradle / Ivy

The newest version!
package io.grpc.health.v1;

import static io.grpc.MethodDescriptor.generateFullMethodName;

/**
 * 
 * Health is gRPC's mechanism for checking whether a server is able to handle
 * RPCs. Its semantics are documented in
 * https://github.com/grpc/grpc/blob/master/doc/health-checking.md.
 * 
*/ @javax.annotation.Generated( value = "by gRPC proto compiler (version 1.40.1)", comments = "Source: grpc/health/v1/health.proto") @io.grpc.stub.annotations.GrpcGenerated public final class HealthGrpc { private HealthGrpc() {} public static final String SERVICE_NAME = "grpc.health.v1.Health"; // Static method descriptors that strictly reflect the proto. private static volatile io.grpc.MethodDescriptor getCheckMethod; @io.grpc.stub.annotations.RpcMethod( fullMethodName = SERVICE_NAME + '/' + "Check", requestType = io.grpc.health.v1.HealthCheckRequest.class, responseType = io.grpc.health.v1.HealthCheckResponse.class, methodType = io.grpc.MethodDescriptor.MethodType.UNARY) public static io.grpc.MethodDescriptor getCheckMethod() { io.grpc.MethodDescriptor getCheckMethod; if ((getCheckMethod = HealthGrpc.getCheckMethod) == null) { synchronized (HealthGrpc.class) { if ((getCheckMethod = HealthGrpc.getCheckMethod) == null) { HealthGrpc.getCheckMethod = getCheckMethod = io.grpc.MethodDescriptor.newBuilder() .setType(io.grpc.MethodDescriptor.MethodType.UNARY) .setFullMethodName(generateFullMethodName(SERVICE_NAME, "Check")) .setSampledToLocalTracing(true) .setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller( io.grpc.health.v1.HealthCheckRequest.getDefaultInstance())) .setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller( io.grpc.health.v1.HealthCheckResponse.getDefaultInstance())) .setSchemaDescriptor(new HealthMethodDescriptorSupplier("Check")) .build(); } } } return getCheckMethod; } private static volatile io.grpc.MethodDescriptor getWatchMethod; @io.grpc.stub.annotations.RpcMethod( fullMethodName = SERVICE_NAME + '/' + "Watch", requestType = io.grpc.health.v1.HealthCheckRequest.class, responseType = io.grpc.health.v1.HealthCheckResponse.class, methodType = io.grpc.MethodDescriptor.MethodType.SERVER_STREAMING) public static io.grpc.MethodDescriptor getWatchMethod() { io.grpc.MethodDescriptor getWatchMethod; if ((getWatchMethod = HealthGrpc.getWatchMethod) == null) { synchronized (HealthGrpc.class) { if ((getWatchMethod = HealthGrpc.getWatchMethod) == null) { HealthGrpc.getWatchMethod = getWatchMethod = io.grpc.MethodDescriptor.newBuilder() .setType(io.grpc.MethodDescriptor.MethodType.SERVER_STREAMING) .setFullMethodName(generateFullMethodName(SERVICE_NAME, "Watch")) .setSampledToLocalTracing(true) .setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller( io.grpc.health.v1.HealthCheckRequest.getDefaultInstance())) .setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller( io.grpc.health.v1.HealthCheckResponse.getDefaultInstance())) .setSchemaDescriptor(new HealthMethodDescriptorSupplier("Watch")) .build(); } } } return getWatchMethod; } /** * Creates a new async stub that supports all call types for the service */ public static HealthStub newStub(io.grpc.Channel channel) { io.grpc.stub.AbstractStub.StubFactory factory = new io.grpc.stub.AbstractStub.StubFactory() { @java.lang.Override public HealthStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { return new HealthStub(channel, callOptions); } }; return HealthStub.newStub(factory, channel); } /** * Creates a new blocking-style stub that supports unary and streaming output calls on the service */ public static HealthBlockingStub newBlockingStub( io.grpc.Channel channel) { io.grpc.stub.AbstractStub.StubFactory factory = new io.grpc.stub.AbstractStub.StubFactory() { @java.lang.Override public HealthBlockingStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { return new HealthBlockingStub(channel, callOptions); } }; return HealthBlockingStub.newStub(factory, channel); } /** * Creates a new ListenableFuture-style stub that supports unary calls on the service */ public static HealthFutureStub newFutureStub( io.grpc.Channel channel) { io.grpc.stub.AbstractStub.StubFactory factory = new io.grpc.stub.AbstractStub.StubFactory() { @java.lang.Override public HealthFutureStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { return new HealthFutureStub(channel, callOptions); } }; return HealthFutureStub.newStub(factory, channel); } /** *
   * Health is gRPC's mechanism for checking whether a server is able to handle
   * RPCs. Its semantics are documented in
   * https://github.com/grpc/grpc/blob/master/doc/health-checking.md.
   * 
*/ public static abstract class HealthImplBase implements io.grpc.BindableService { /** *
     * Check gets the health of the specified service. If the requested service
     * is unknown, the call will fail with status NOT_FOUND. If the caller does
     * not specify a service name, the server should respond with its overall
     * health status.
     * Clients should set a deadline when calling Check, and can declare the
     * server unhealthy if they do not receive a timely response.
     * Check implementations should be idempotent and side effect free.
     * 
*/ public void check(io.grpc.health.v1.HealthCheckRequest request, io.grpc.stub.StreamObserver responseObserver) { io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(getCheckMethod(), responseObserver); } /** *
     * 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.
     * 
*/ public void watch(io.grpc.health.v1.HealthCheckRequest request, io.grpc.stub.StreamObserver responseObserver) { io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(getWatchMethod(), responseObserver); } @java.lang.Override public final io.grpc.ServerServiceDefinition bindService() { return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor()) .addMethod( getCheckMethod(), io.grpc.stub.ServerCalls.asyncUnaryCall( new MethodHandlers< io.grpc.health.v1.HealthCheckRequest, io.grpc.health.v1.HealthCheckResponse>( this, METHODID_CHECK))) .addMethod( getWatchMethod(), io.grpc.stub.ServerCalls.asyncServerStreamingCall( new MethodHandlers< io.grpc.health.v1.HealthCheckRequest, io.grpc.health.v1.HealthCheckResponse>( this, METHODID_WATCH))) .build(); } } /** *
   * Health is gRPC's mechanism for checking whether a server is able to handle
   * RPCs. Its semantics are documented in
   * https://github.com/grpc/grpc/blob/master/doc/health-checking.md.
   * 
*/ public static final class HealthStub extends io.grpc.stub.AbstractAsyncStub { private HealthStub( io.grpc.Channel channel, io.grpc.CallOptions callOptions) { super(channel, callOptions); } @java.lang.Override protected HealthStub build( io.grpc.Channel channel, io.grpc.CallOptions callOptions) { return new HealthStub(channel, callOptions); } /** *
     * Check gets the health of the specified service. If the requested service
     * is unknown, the call will fail with status NOT_FOUND. If the caller does
     * not specify a service name, the server should respond with its overall
     * health status.
     * Clients should set a deadline when calling Check, and can declare the
     * server unhealthy if they do not receive a timely response.
     * Check implementations should be idempotent and side effect free.
     * 
*/ public void check(io.grpc.health.v1.HealthCheckRequest request, io.grpc.stub.StreamObserver responseObserver) { io.grpc.stub.ClientCalls.asyncUnaryCall( getChannel().newCall(getCheckMethod(), getCallOptions()), request, responseObserver); } /** *
     * 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.
     * 
*/ public void watch(io.grpc.health.v1.HealthCheckRequest request, io.grpc.stub.StreamObserver responseObserver) { io.grpc.stub.ClientCalls.asyncServerStreamingCall( getChannel().newCall(getWatchMethod(), getCallOptions()), request, responseObserver); } } /** *
   * Health is gRPC's mechanism for checking whether a server is able to handle
   * RPCs. Its semantics are documented in
   * https://github.com/grpc/grpc/blob/master/doc/health-checking.md.
   * 
*/ public static final class HealthBlockingStub extends io.grpc.stub.AbstractBlockingStub { private HealthBlockingStub( io.grpc.Channel channel, io.grpc.CallOptions callOptions) { super(channel, callOptions); } @java.lang.Override protected HealthBlockingStub build( io.grpc.Channel channel, io.grpc.CallOptions callOptions) { return new HealthBlockingStub(channel, callOptions); } /** *
     * Check gets the health of the specified service. If the requested service
     * is unknown, the call will fail with status NOT_FOUND. If the caller does
     * not specify a service name, the server should respond with its overall
     * health status.
     * Clients should set a deadline when calling Check, and can declare the
     * server unhealthy if they do not receive a timely response.
     * Check implementations should be idempotent and side effect free.
     * 
*/ public io.grpc.health.v1.HealthCheckResponse check(io.grpc.health.v1.HealthCheckRequest request) { return io.grpc.stub.ClientCalls.blockingUnaryCall( getChannel(), getCheckMethod(), getCallOptions(), request); } /** *
     * 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.
     * 
*/ public java.util.Iterator watch( io.grpc.health.v1.HealthCheckRequest request) { return io.grpc.stub.ClientCalls.blockingServerStreamingCall( getChannel(), getWatchMethod(), getCallOptions(), request); } } /** *
   * Health is gRPC's mechanism for checking whether a server is able to handle
   * RPCs. Its semantics are documented in
   * https://github.com/grpc/grpc/blob/master/doc/health-checking.md.
   * 
*/ public static final class HealthFutureStub extends io.grpc.stub.AbstractFutureStub { private HealthFutureStub( io.grpc.Channel channel, io.grpc.CallOptions callOptions) { super(channel, callOptions); } @java.lang.Override protected HealthFutureStub build( io.grpc.Channel channel, io.grpc.CallOptions callOptions) { return new HealthFutureStub(channel, callOptions); } /** *
     * Check gets the health of the specified service. If the requested service
     * is unknown, the call will fail with status NOT_FOUND. If the caller does
     * not specify a service name, the server should respond with its overall
     * health status.
     * Clients should set a deadline when calling Check, and can declare the
     * server unhealthy if they do not receive a timely response.
     * Check implementations should be idempotent and side effect free.
     * 
*/ public com.google.common.util.concurrent.ListenableFuture check( io.grpc.health.v1.HealthCheckRequest request) { return io.grpc.stub.ClientCalls.futureUnaryCall( getChannel().newCall(getCheckMethod(), getCallOptions()), request); } } private static final int METHODID_CHECK = 0; private static final int METHODID_WATCH = 1; private static final class MethodHandlers implements io.grpc.stub.ServerCalls.UnaryMethod, io.grpc.stub.ServerCalls.ServerStreamingMethod, io.grpc.stub.ServerCalls.ClientStreamingMethod, io.grpc.stub.ServerCalls.BidiStreamingMethod { private final HealthImplBase serviceImpl; private final int methodId; MethodHandlers(HealthImplBase serviceImpl, int methodId) { this.serviceImpl = serviceImpl; this.methodId = methodId; } @java.lang.Override @java.lang.SuppressWarnings("unchecked") public void invoke(Req request, io.grpc.stub.StreamObserver responseObserver) { switch (methodId) { case METHODID_CHECK: serviceImpl.check((io.grpc.health.v1.HealthCheckRequest) request, (io.grpc.stub.StreamObserver) responseObserver); break; case METHODID_WATCH: serviceImpl.watch((io.grpc.health.v1.HealthCheckRequest) request, (io.grpc.stub.StreamObserver) responseObserver); break; default: throw new AssertionError(); } } @java.lang.Override @java.lang.SuppressWarnings("unchecked") public io.grpc.stub.StreamObserver invoke( io.grpc.stub.StreamObserver responseObserver) { switch (methodId) { default: throw new AssertionError(); } } } private static abstract class HealthBaseDescriptorSupplier implements io.grpc.protobuf.ProtoFileDescriptorSupplier, io.grpc.protobuf.ProtoServiceDescriptorSupplier { HealthBaseDescriptorSupplier() {} @java.lang.Override public com.google.protobuf.Descriptors.FileDescriptor getFileDescriptor() { return io.grpc.health.v1.HealthProto.getDescriptor(); } @java.lang.Override public com.google.protobuf.Descriptors.ServiceDescriptor getServiceDescriptor() { return getFileDescriptor().findServiceByName("Health"); } } private static final class HealthFileDescriptorSupplier extends HealthBaseDescriptorSupplier { HealthFileDescriptorSupplier() {} } private static final class HealthMethodDescriptorSupplier extends HealthBaseDescriptorSupplier implements io.grpc.protobuf.ProtoMethodDescriptorSupplier { private final String methodName; HealthMethodDescriptorSupplier(String methodName) { this.methodName = methodName; } @java.lang.Override public com.google.protobuf.Descriptors.MethodDescriptor getMethodDescriptor() { return getServiceDescriptor().findMethodByName(methodName); } } private static volatile io.grpc.ServiceDescriptor serviceDescriptor; public static io.grpc.ServiceDescriptor getServiceDescriptor() { io.grpc.ServiceDescriptor result = serviceDescriptor; if (result == null) { synchronized (HealthGrpc.class) { result = serviceDescriptor; if (result == null) { serviceDescriptor = result = io.grpc.ServiceDescriptor.newBuilder(SERVICE_NAME) .setSchemaDescriptor(new HealthFileDescriptorSupplier()) .addMethod(getCheckMethod()) .addMethod(getWatchMethod()) .build(); } } } return result; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy