All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.rouz.grpc.examples.chat.ChatServiceGrpc Maven / Gradle / Ivy
package io.rouz.grpc.examples.chat;
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;
/**
*/
@javax.annotation.Generated(
value = "by gRPC proto compiler (version 1.18.0)",
comments = "Source: chat.proto")
public final class ChatServiceGrpc {
private ChatServiceGrpc() {}
public static final String SERVICE_NAME = "io.rouz.grpc.examples.chat.ChatService";
// Static method descriptors that strictly reflect the proto.
private static volatile io.grpc.MethodDescriptor getChatMethod;
@io.grpc.stub.annotations.RpcMethod(
fullMethodName = SERVICE_NAME + '/' + "Chat",
requestType = io.rouz.grpc.examples.chat.ChatMessage.class,
responseType = io.rouz.grpc.examples.chat.ChatMessageFromService.class,
methodType = io.grpc.MethodDescriptor.MethodType.BIDI_STREAMING)
public static io.grpc.MethodDescriptor getChatMethod() {
io.grpc.MethodDescriptor getChatMethod;
if ((getChatMethod = ChatServiceGrpc.getChatMethod) == null) {
synchronized (ChatServiceGrpc.class) {
if ((getChatMethod = ChatServiceGrpc.getChatMethod) == null) {
ChatServiceGrpc.getChatMethod = getChatMethod =
io.grpc.MethodDescriptor.newBuilder()
.setType(io.grpc.MethodDescriptor.MethodType.BIDI_STREAMING)
.setFullMethodName(generateFullMethodName(
"io.rouz.grpc.examples.chat.ChatService", "Chat"))
.setSampledToLocalTracing(true)
.setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
io.rouz.grpc.examples.chat.ChatMessage.getDefaultInstance()))
.setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
io.rouz.grpc.examples.chat.ChatMessageFromService.getDefaultInstance()))
.setSchemaDescriptor(new ChatServiceMethodDescriptorSupplier("Chat"))
.build();
}
}
}
return getChatMethod;
}
private static volatile io.grpc.MethodDescriptor getGetNamesMethod;
@io.grpc.stub.annotations.RpcMethod(
fullMethodName = SERVICE_NAME + '/' + "GetNames",
requestType = com.google.protobuf.Empty.class,
responseType = io.rouz.grpc.examples.chat.ChatRoom.class,
methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
public static io.grpc.MethodDescriptor getGetNamesMethod() {
io.grpc.MethodDescriptor getGetNamesMethod;
if ((getGetNamesMethod = ChatServiceGrpc.getGetNamesMethod) == null) {
synchronized (ChatServiceGrpc.class) {
if ((getGetNamesMethod = ChatServiceGrpc.getGetNamesMethod) == null) {
ChatServiceGrpc.getGetNamesMethod = getGetNamesMethod =
io.grpc.MethodDescriptor.newBuilder()
.setType(io.grpc.MethodDescriptor.MethodType.UNARY)
.setFullMethodName(generateFullMethodName(
"io.rouz.grpc.examples.chat.ChatService", "GetNames"))
.setSampledToLocalTracing(true)
.setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
com.google.protobuf.Empty.getDefaultInstance()))
.setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
io.rouz.grpc.examples.chat.ChatRoom.getDefaultInstance()))
.setSchemaDescriptor(new ChatServiceMethodDescriptorSupplier("GetNames"))
.build();
}
}
}
return getGetNamesMethod;
}
/**
* 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);
}
/**
*/
public static abstract class ChatServiceImplBase implements io.grpc.BindableService {
/**
*/
public io.grpc.stub.StreamObserver chat(
io.grpc.stub.StreamObserver responseObserver) {
return asyncUnimplementedStreamingCall(getChatMethod(), responseObserver);
}
/**
*/
public void getNames(com.google.protobuf.Empty request,
io.grpc.stub.StreamObserver responseObserver) {
asyncUnimplementedUnaryCall(getGetNamesMethod(), responseObserver);
}
@java.lang.Override public final io.grpc.ServerServiceDefinition bindService() {
return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor())
.addMethod(
getChatMethod(),
asyncBidiStreamingCall(
new MethodHandlers<
io.rouz.grpc.examples.chat.ChatMessage,
io.rouz.grpc.examples.chat.ChatMessageFromService>(
this, METHODID_CHAT)))
.addMethod(
getGetNamesMethod(),
asyncUnaryCall(
new MethodHandlers<
com.google.protobuf.Empty,
io.rouz.grpc.examples.chat.ChatRoom>(
this, METHODID_GET_NAMES)))
.build();
}
}
/**
*/
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(getChatMethod(), getCallOptions()), responseObserver);
}
/**
*/
public void getNames(com.google.protobuf.Empty request,
io.grpc.stub.StreamObserver responseObserver) {
asyncUnaryCall(
getChannel().newCall(getGetNamesMethod(), getCallOptions()), request, responseObserver);
}
}
/**
*/
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);
}
/**
*/
public io.rouz.grpc.examples.chat.ChatRoom getNames(com.google.protobuf.Empty request) {
return blockingUnaryCall(
getChannel(), getGetNamesMethod(), getCallOptions(), request);
}
}
/**
*/
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);
}
/**
*/
public com.google.common.util.concurrent.ListenableFuture getNames(
com.google.protobuf.Empty request) {
return futureUnaryCall(
getChannel().newCall(getGetNamesMethod(), getCallOptions()), request);
}
}
private static final int METHODID_GET_NAMES = 0;
private static final int METHODID_CHAT = 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 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) {
case METHODID_GET_NAMES:
serviceImpl.getNames((com.google.protobuf.Empty) 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) {
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 io.rouz.grpc.examples.chat.Chat.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(getChatMethod())
.addMethod(getGetNamesMethod())
.build();
}
}
}
return result;
}
}