package io.grpc.testing.compiler; import static io.grpc.MethodDescriptor.generateFullMethodName; import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; import static io.grpc.stub.ClientCalls.asyncUnaryCall; import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; import static io.grpc.stub.ClientCalls.blockingUnaryCall; import static io.grpc.stub.ClientCalls.futureUnaryCall; import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; import static io.grpc.stub.ServerCalls.asyncClientStreamingCall; import static io.grpc.stub.ServerCalls.asyncServerStreamingCall; import static io.grpc.stub.ServerCalls.asyncUnaryCall; import static io.grpc.stub.ServerCalls.asyncUnimplementedStreamingCall; import static io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall; /** *
 * Test service that has been deprecated and should generate with Java's @Deprecated annotation
 * 
*/ @javax.annotation.Generated( value = "by gRPC proto compiler (version 1.16.0-SNAPSHOT)", comments = "Source: grpc/testing/compiler/test.proto") @java.lang.Deprecated public final class TestDeprecatedServiceGrpc { private TestDeprecatedServiceGrpc() {} public static final String SERVICE_NAME = "grpc.testing.compiler.TestDeprecatedService"; // Static method descriptors that strictly reflect the proto. private static volatile io.grpc.MethodDescriptor getDeprecatedMethodMethod; @io.grpc.stub.annotations.RpcMethod( fullMethodName = SERVICE_NAME + '/' + "DeprecatedMethod", requestType = io.grpc.testing.compiler.Test.SimpleRequest.class, responseType = io.grpc.testing.compiler.Test.SimpleResponse.class, methodType = io.grpc.MethodDescriptor.MethodType.UNARY) public static io.grpc.MethodDescriptor getDeprecatedMethodMethod() { io.grpc.MethodDescriptor getDeprecatedMethodMethod; if ((getDeprecatedMethodMethod = TestDeprecatedServiceGrpc.getDeprecatedMethodMethod) == null) { synchronized (TestDeprecatedServiceGrpc.class) { if ((getDeprecatedMethodMethod = TestDeprecatedServiceGrpc.getDeprecatedMethodMethod) == null) { TestDeprecatedServiceGrpc.getDeprecatedMethodMethod = getDeprecatedMethodMethod = io.grpc.MethodDescriptor.newBuilder() .setType(io.grpc.MethodDescriptor.MethodType.UNARY) .setFullMethodName(generateFullMethodName( "grpc.testing.compiler.TestDeprecatedService", "DeprecatedMethod")) .setSampledToLocalTracing(true) .setRequestMarshaller(io.grpc.protobuf.lite.ProtoLiteUtils.marshaller( io.grpc.testing.compiler.Test.SimpleRequest.getDefaultInstance())) .setResponseMarshaller(io.grpc.protobuf.lite.ProtoLiteUtils.marshaller( io.grpc.testing.compiler.Test.SimpleResponse.getDefaultInstance())) .build(); } } } return getDeprecatedMethodMethod; } /** * Creates a new async stub that supports all call types for the service */ public static TestDeprecatedServiceStub newStub(io.grpc.Channel channel) { return new TestDeprecatedServiceStub(channel); } /** * Creates a new blocking-style stub that supports unary and streaming output calls on the service */ public static TestDeprecatedServiceBlockingStub newBlockingStub( io.grpc.Channel channel) { return new TestDeprecatedServiceBlockingStub(channel); } /** * Creates a new ListenableFuture-style stub that supports unary calls on the service */ public static TestDeprecatedServiceFutureStub newFutureStub( io.grpc.Channel channel) { return new TestDeprecatedServiceFutureStub(channel); } /** *
   * Test service that has been deprecated and should generate with Java's @Deprecated annotation
   * 
*/ @java.lang.Deprecated public static abstract class TestDeprecatedServiceImplBase implements io.grpc.BindableService { /** *
     * An RPC method that has been deprecated and should generate with Java's @Deprecated annotation
     * 
*/ @java.lang.Deprecated public void deprecatedMethod(io.grpc.testing.compiler.Test.SimpleRequest request, io.grpc.stub.StreamObserver responseObserver) { asyncUnimplementedUnaryCall(getDeprecatedMethodMethod(), responseObserver); } @java.lang.Override public final io.grpc.ServerServiceDefinition bindService() { return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor()) .addMethod( getDeprecatedMethodMethod(), asyncUnaryCall( new MethodHandlers< io.grpc.testing.compiler.Test.SimpleRequest, io.grpc.testing.compiler.Test.SimpleResponse>( this, METHODID_DEPRECATED_METHOD))) .build(); } } /** *
   * Test service that has been deprecated and should generate with Java's @Deprecated annotation
   * 
*/ @java.lang.Deprecated public static final class TestDeprecatedServiceStub extends io.grpc.stub.AbstractStub { private TestDeprecatedServiceStub(io.grpc.Channel channel) { super(channel); } private TestDeprecatedServiceStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { super(channel, callOptions); } @java.lang.Override protected TestDeprecatedServiceStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { return new TestDeprecatedServiceStub(channel, callOptions); } /** *
     * An RPC method that has been deprecated and should generate with Java's @Deprecated annotation
     * 
*/ @java.lang.Deprecated public void deprecatedMethod(io.grpc.testing.compiler.Test.SimpleRequest request, io.grpc.stub.StreamObserver responseObserver) { asyncUnaryCall( getChannel().newCall(getDeprecatedMethodMethod(), getCallOptions()), request, responseObserver); } } /** *
   * Test service that has been deprecated and should generate with Java's @Deprecated annotation
   * 
*/ @java.lang.Deprecated public static final class TestDeprecatedServiceBlockingStub extends io.grpc.stub.AbstractStub { private TestDeprecatedServiceBlockingStub(io.grpc.Channel channel) { super(channel); } private TestDeprecatedServiceBlockingStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { super(channel, callOptions); } @java.lang.Override protected TestDeprecatedServiceBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { return new TestDeprecatedServiceBlockingStub(channel, callOptions); } /** *
     * An RPC method that has been deprecated and should generate with Java's @Deprecated annotation
     * 
*/ @java.lang.Deprecated public io.grpc.testing.compiler.Test.SimpleResponse deprecatedMethod(io.grpc.testing.compiler.Test.SimpleRequest request) { return blockingUnaryCall( getChannel(), getDeprecatedMethodMethod(), getCallOptions(), request); } } /** *
   * Test service that has been deprecated and should generate with Java's @Deprecated annotation
   * 
*/ @java.lang.Deprecated public static final class TestDeprecatedServiceFutureStub extends io.grpc.stub.AbstractStub { private TestDeprecatedServiceFutureStub(io.grpc.Channel channel) { super(channel); } private TestDeprecatedServiceFutureStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { super(channel, callOptions); } @java.lang.Override protected TestDeprecatedServiceFutureStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { return new TestDeprecatedServiceFutureStub(channel, callOptions); } /** *
     * An RPC method that has been deprecated and should generate with Java's @Deprecated annotation
     * 
*/ @java.lang.Deprecated public com.google.common.util.concurrent.ListenableFuture deprecatedMethod( io.grpc.testing.compiler.Test.SimpleRequest request) { return futureUnaryCall( getChannel().newCall(getDeprecatedMethodMethod(), getCallOptions()), request); } } private static final int METHODID_DEPRECATED_METHOD = 0; 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 TestDeprecatedServiceImplBase serviceImpl; private final int methodId; MethodHandlers(TestDeprecatedServiceImplBase 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_DEPRECATED_METHOD: serviceImpl.deprecatedMethod((io.grpc.testing.compiler.Test.SimpleRequest) 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 volatile io.grpc.ServiceDescriptor serviceDescriptor; public static io.grpc.ServiceDescriptor getServiceDescriptor() { io.grpc.ServiceDescriptor result = serviceDescriptor; if (result == null) { synchronized (TestDeprecatedServiceGrpc.class) { result = serviceDescriptor; if (result == null) { serviceDescriptor = result = io.grpc.ServiceDescriptor.newBuilder(SERVICE_NAME) .addMethod(getDeprecatedMethodMethod()) .build(); } } } return result; } }