package com.example.grpc; import static io.grpc.stub.ClientCalls.asyncUnaryCall; import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; import static io.grpc.stub.ClientCalls.blockingUnaryCall; import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; import static io.grpc.stub.ClientCalls.futureUnaryCall; import static io.grpc.MethodDescriptor.generateFullMethodName; import static io.grpc.stub.ServerCalls.asyncUnaryCall; import static io.grpc.stub.ServerCalls.asyncServerStreamingCall; import static io.grpc.stub.ServerCalls.asyncClientStreamingCall; import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; import static io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall; import static io.grpc.stub.ServerCalls.asyncUnimplementedStreamingCall; /** *
 * Defining a Service, a Service can have multiple RPC operations
 * 
*/ @javax.annotation.Generated( value = "by gRPC proto compiler (version 1.7.0)", comments = "Source: GreetingService.proto") public final class GreetingServiceGrpc { private GreetingServiceGrpc() {} public static final String SERVICE_NAME = "com.example.grpc.GreetingService"; // Static method descriptors that strictly reflect the proto. @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/1901") public static final io.grpc.MethodDescriptor METHOD_GREETING = io.grpc.MethodDescriptor.newBuilder() .setType(io.grpc.MethodDescriptor.MethodType.UNARY) .setFullMethodName(generateFullMethodName( "com.example.grpc.GreetingService", "greeting")) .setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller( com.example.grpc.GreetingServiceOuterClass.HelloRequest.getDefaultInstance())) .setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller( com.example.grpc.GreetingServiceOuterClass.HelloResponse.getDefaultInstance())) .setSchemaDescriptor(new GreetingServiceMethodDescriptorSupplier("greeting")) .build(); @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/1901") public static final io.grpc.MethodDescriptor METHOD_STREAM_GREETING = io.grpc.MethodDescriptor.newBuilder() .setType(io.grpc.MethodDescriptor.MethodType.SERVER_STREAMING) .setFullMethodName(generateFullMethodName( "com.example.grpc.GreetingService", "streamGreeting")) .setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller( com.example.grpc.GreetingServiceOuterClass.HelloRequest.getDefaultInstance())) .setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller( com.example.grpc.GreetingServiceOuterClass.HelloResponse.getDefaultInstance())) .setSchemaDescriptor(new GreetingServiceMethodDescriptorSupplier("streamGreeting")) .build(); /** * Creates a new async stub that supports all call types for the service */ public static GreetingServiceStub newStub(io.grpc.Channel channel) { return new GreetingServiceStub(channel); } /** * Creates a new blocking-style stub that supports unary and streaming output calls on the service */ public static GreetingServiceBlockingStub newBlockingStub( io.grpc.Channel channel) { return new GreetingServiceBlockingStub(channel); } /** * Creates a new ListenableFuture-style stub that supports unary calls on the service */ public static GreetingServiceFutureStub newFutureStub( io.grpc.Channel channel) { return new GreetingServiceFutureStub(channel); } /** *
   * Defining a Service, a Service can have multiple RPC operations
   * 
*/ public static abstract class GreetingServiceImplBase implements io.grpc.BindableService { /** */ public void greeting(com.example.grpc.GreetingServiceOuterClass.HelloRequest request, io.grpc.stub.StreamObserver responseObserver) { asyncUnimplementedUnaryCall(METHOD_GREETING, responseObserver); } /** */ public void streamGreeting(com.example.grpc.GreetingServiceOuterClass.HelloRequest request, io.grpc.stub.StreamObserver responseObserver) { asyncUnimplementedUnaryCall(METHOD_STREAM_GREETING, responseObserver); } @java.lang.Override public final io.grpc.ServerServiceDefinition bindService() { return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor()) .addMethod( METHOD_GREETING, asyncUnaryCall( new MethodHandlers< com.example.grpc.GreetingServiceOuterClass.HelloRequest, com.example.grpc.GreetingServiceOuterClass.HelloResponse>( this, METHODID_GREETING))) .addMethod( METHOD_STREAM_GREETING, asyncServerStreamingCall( new MethodHandlers< com.example.grpc.GreetingServiceOuterClass.HelloRequest, com.example.grpc.GreetingServiceOuterClass.HelloResponse>( this, METHODID_STREAM_GREETING))) .build(); } } /** *
   * Defining a Service, a Service can have multiple RPC operations
   * 
*/ public static final class GreetingServiceStub extends io.grpc.stub.AbstractStub { private GreetingServiceStub(io.grpc.Channel channel) { super(channel); } private GreetingServiceStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { super(channel, callOptions); } @java.lang.Override protected GreetingServiceStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { return new GreetingServiceStub(channel, callOptions); } /** */ public void greeting(com.example.grpc.GreetingServiceOuterClass.HelloRequest request, io.grpc.stub.StreamObserver responseObserver) { asyncUnaryCall( getChannel().newCall(METHOD_GREETING, getCallOptions()), request, responseObserver); } /** */ public void streamGreeting(com.example.grpc.GreetingServiceOuterClass.HelloRequest request, io.grpc.stub.StreamObserver responseObserver) { asyncServerStreamingCall( getChannel().newCall(METHOD_STREAM_GREETING, getCallOptions()), request, responseObserver); } } /** *
   * Defining a Service, a Service can have multiple RPC operations
   * 
*/ public static final class GreetingServiceBlockingStub extends io.grpc.stub.AbstractStub { private GreetingServiceBlockingStub(io.grpc.Channel channel) { super(channel); } private GreetingServiceBlockingStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { super(channel, callOptions); } @java.lang.Override protected GreetingServiceBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { return new GreetingServiceBlockingStub(channel, callOptions); } /** */ public com.example.grpc.GreetingServiceOuterClass.HelloResponse greeting(com.example.grpc.GreetingServiceOuterClass.HelloRequest request) { return blockingUnaryCall( getChannel(), METHOD_GREETING, getCallOptions(), request); } /** */ public java.util.Iterator streamGreeting( com.example.grpc.GreetingServiceOuterClass.HelloRequest request) { return blockingServerStreamingCall( getChannel(), METHOD_STREAM_GREETING, getCallOptions(), request); } } /** *
   * Defining a Service, a Service can have multiple RPC operations
   * 
*/ public static final class GreetingServiceFutureStub extends io.grpc.stub.AbstractStub { private GreetingServiceFutureStub(io.grpc.Channel channel) { super(channel); } private GreetingServiceFutureStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { super(channel, callOptions); } @java.lang.Override protected GreetingServiceFutureStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions) { return new GreetingServiceFutureStub(channel, callOptions); } /** */ public com.google.common.util.concurrent.ListenableFuture greeting( com.example.grpc.GreetingServiceOuterClass.HelloRequest request) { return futureUnaryCall( getChannel().newCall(METHOD_GREETING, getCallOptions()), request); } } private static final int METHODID_GREETING = 0; private static final int METHODID_STREAM_GREETING = 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 GreetingServiceImplBase serviceImpl; private final int methodId; MethodHandlers(GreetingServiceImplBase 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_GREETING: serviceImpl.greeting((com.example.grpc.GreetingServiceOuterClass.HelloRequest) request, (io.grpc.stub.StreamObserver) responseObserver); break; case METHODID_STREAM_GREETING: serviceImpl.streamGreeting((com.example.grpc.GreetingServiceOuterClass.HelloRequest) 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 GreetingServiceBaseDescriptorSupplier implements io.grpc.protobuf.ProtoFileDescriptorSupplier, io.grpc.protobuf.ProtoServiceDescriptorSupplier { GreetingServiceBaseDescriptorSupplier() {} @java.lang.Override public com.google.protobuf.Descriptors.FileDescriptor getFileDescriptor() { return com.example.grpc.GreetingServiceOuterClass.getDescriptor(); } @java.lang.Override public com.google.protobuf.Descriptors.ServiceDescriptor getServiceDescriptor() { return getFileDescriptor().findServiceByName("GreetingService"); } } private static final class GreetingServiceFileDescriptorSupplier extends GreetingServiceBaseDescriptorSupplier { GreetingServiceFileDescriptorSupplier() {} } private static final class GreetingServiceMethodDescriptorSupplier extends GreetingServiceBaseDescriptorSupplier implements io.grpc.protobuf.ProtoMethodDescriptorSupplier { private final String methodName; GreetingServiceMethodDescriptorSupplier(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 (GreetingServiceGrpc.class) { result = serviceDescriptor; if (result == null) { serviceDescriptor = result = io.grpc.ServiceDescriptor.newBuilder(SERVICE_NAME) .setSchemaDescriptor(new GreetingServiceFileDescriptorSupplier()) .addMethod(METHOD_GREETING) .addMethod(METHOD_STREAM_GREETING) .build(); } } } return result; } }