package com.example.chat;
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: ChatService.proto")
public final class ChatServiceGrpc {
private ChatServiceGrpc() {}
public static final String SERVICE_NAME = "com.example.chat.ChatService";
// 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_CHAT =
io.grpc.MethodDescriptor.newBuilder()
.setType(io.grpc.MethodDescriptor.MethodType.BIDI_STREAMING)
.setFullMethodName(generateFullMethodName(
"com.example.chat.ChatService", "chat"))
.setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
com.example.chat.ChatServiceOuterClass.ChatMessage.getDefaultInstance()))
.setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
com.example.chat.ChatServiceOuterClass.ChatMessage.getDefaultInstance()))
.setSchemaDescriptor(new ChatServiceMethodDescriptorSupplier("chat"))
.build();
/**
* Creates a new async stub that supports all call types for the service
*/
public static ChatServiceStub newStub(io.grpc.Channel channel) {
return new ChatServiceStub(channel);
}
/**
* Creates a new blocking-style stub that supports unary and streaming output calls on the service
*/
public static ChatServiceBlockingStub newBlockingStub(
io.grpc.Channel channel) {
return new ChatServiceBlockingStub(channel);
}
/**
* Creates a new ListenableFuture-style stub that supports unary calls on the service
*/
public static ChatServiceFutureStub newFutureStub(
io.grpc.Channel channel) {
return new ChatServiceFutureStub(channel);
}
/**
*
* Defining a Service, a Service can have multiple RPC operations
*
*/
public static abstract class ChatServiceImplBase implements io.grpc.BindableService {
/**
*/
public io.grpc.stub.StreamObserver chat(
io.grpc.stub.StreamObserver responseObserver) {
return asyncUnimplementedStreamingCall(METHOD_CHAT, responseObserver);
}
@java.lang.Override public final io.grpc.ServerServiceDefinition bindService() {
return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor())
.addMethod(
METHOD_CHAT,
asyncBidiStreamingCall(
new MethodHandlers<
com.example.chat.ChatServiceOuterClass.ChatMessage,
com.example.chat.ChatServiceOuterClass.ChatMessage>(
this, METHODID_CHAT)))
.build();
}
}
/**
*
* Defining a Service, a Service can have multiple RPC operations
*
*/
public static final class ChatServiceStub extends io.grpc.stub.AbstractStub {
private ChatServiceStub(io.grpc.Channel channel) {
super(channel);
}
private ChatServiceStub(io.grpc.Channel channel,
io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected ChatServiceStub build(io.grpc.Channel channel,
io.grpc.CallOptions callOptions) {
return new ChatServiceStub(channel, callOptions);
}
/**
*/
public io.grpc.stub.StreamObserver chat(
io.grpc.stub.StreamObserver responseObserver) {
return asyncBidiStreamingCall(
getChannel().newCall(METHOD_CHAT, getCallOptions()), responseObserver);
}
}
/**
*
* Defining a Service, a Service can have multiple RPC operations
*
*/
public static final class ChatServiceBlockingStub extends io.grpc.stub.AbstractStub {
private ChatServiceBlockingStub(io.grpc.Channel channel) {
super(channel);
}
private ChatServiceBlockingStub(io.grpc.Channel channel,
io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected ChatServiceBlockingStub build(io.grpc.Channel channel,
io.grpc.CallOptions callOptions) {
return new ChatServiceBlockingStub(channel, callOptions);
}
}
/**
*
* Defining a Service, a Service can have multiple RPC operations
*
*/
public static final class ChatServiceFutureStub extends io.grpc.stub.AbstractStub {
private ChatServiceFutureStub(io.grpc.Channel channel) {
super(channel);
}
private ChatServiceFutureStub(io.grpc.Channel channel,
io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected ChatServiceFutureStub build(io.grpc.Channel channel,
io.grpc.CallOptions callOptions) {
return new ChatServiceFutureStub(channel, callOptions);
}
}
private static final int METHODID_CHAT = 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 ChatServiceImplBase serviceImpl;
private final int methodId;
MethodHandlers(ChatServiceImplBase 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) {
default:
throw new AssertionError();
}
}
@java.lang.Override
@java.lang.SuppressWarnings("unchecked")
public io.grpc.stub.StreamObserver invoke(
io.grpc.stub.StreamObserver responseObserver) {
switch (methodId) {
case METHODID_CHAT:
return (io.grpc.stub.StreamObserver) serviceImpl.chat(
(io.grpc.stub.StreamObserver) responseObserver);
default:
throw new AssertionError();
}
}
}
private static abstract class ChatServiceBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoFileDescriptorSupplier, io.grpc.protobuf.ProtoServiceDescriptorSupplier {
ChatServiceBaseDescriptorSupplier() {}
@java.lang.Override
public com.google.protobuf.Descriptors.FileDescriptor getFileDescriptor() {
return com.example.chat.ChatServiceOuterClass.getDescriptor();
}
@java.lang.Override
public com.google.protobuf.Descriptors.ServiceDescriptor getServiceDescriptor() {
return getFileDescriptor().findServiceByName("ChatService");
}
}
private static final class ChatServiceFileDescriptorSupplier
extends ChatServiceBaseDescriptorSupplier {
ChatServiceFileDescriptorSupplier() {}
}
private static final class ChatServiceMethodDescriptorSupplier
extends ChatServiceBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoMethodDescriptorSupplier {
private final String methodName;
ChatServiceMethodDescriptorSupplier(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 (ChatServiceGrpc.class) {
result = serviceDescriptor;
if (result == null) {
serviceDescriptor = result = io.grpc.ServiceDescriptor.newBuilder(SERVICE_NAME)
.setSchemaDescriptor(new ChatServiceFileDescriptorSupplier())
.addMethod(METHOD_CHAT)
.build();
}
}
}
return result;
}
}