com.webull.openapi.trade.events.internal.proto.EventServiceGrpc Maven / Gradle / Ivy
package com.webull.openapi.trade.events.internal.proto;
import static io.grpc.MethodDescriptor.generateFullMethodName;
/**
*/
@javax.annotation.Generated(
value = "by gRPC proto compiler (version 1.51.0)",
comments = "Source: events.proto")
@io.grpc.stub.annotations.GrpcGenerated
public final class EventServiceGrpc {
private EventServiceGrpc() {}
public static final String SERVICE_NAME = "grpc.trade.event.EventService";
// Static method descriptors that strictly reflect the proto.
private static volatile io.grpc.MethodDescriptor getSubscribeMethod;
@io.grpc.stub.annotations.RpcMethod(
fullMethodName = SERVICE_NAME + '/' + "Subscribe",
requestType = com.webull.openapi.trade.events.internal.proto.Events.SubscribeRequest.class,
responseType = com.webull.openapi.trade.events.internal.proto.Events.SubscribeResponse.class,
methodType = io.grpc.MethodDescriptor.MethodType.SERVER_STREAMING)
public static io.grpc.MethodDescriptor getSubscribeMethod() {
io.grpc.MethodDescriptor getSubscribeMethod;
if ((getSubscribeMethod = EventServiceGrpc.getSubscribeMethod) == null) {
synchronized (EventServiceGrpc.class) {
if ((getSubscribeMethod = EventServiceGrpc.getSubscribeMethod) == null) {
EventServiceGrpc.getSubscribeMethod = getSubscribeMethod =
io.grpc.MethodDescriptor.newBuilder()
.setType(io.grpc.MethodDescriptor.MethodType.SERVER_STREAMING)
.setFullMethodName(generateFullMethodName(SERVICE_NAME, "Subscribe"))
.setSampledToLocalTracing(true)
.setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
com.webull.openapi.trade.events.internal.proto.Events.SubscribeRequest.getDefaultInstance()))
.setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
com.webull.openapi.trade.events.internal.proto.Events.SubscribeResponse.getDefaultInstance()))
.setSchemaDescriptor(new EventServiceMethodDescriptorSupplier("Subscribe"))
.build();
}
}
}
return getSubscribeMethod;
}
/**
* Creates a new async stub that supports all call types for the service
*/
public static EventServiceStub newStub(io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public EventServiceStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new EventServiceStub(channel, callOptions);
}
};
return EventServiceStub.newStub(factory, channel);
}
/**
* Creates a new blocking-style stub that supports unary and streaming output calls on the service
*/
public static EventServiceBlockingStub newBlockingStub(
io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public EventServiceBlockingStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new EventServiceBlockingStub(channel, callOptions);
}
};
return EventServiceBlockingStub.newStub(factory, channel);
}
/**
* Creates a new ListenableFuture-style stub that supports unary calls on the service
*/
public static EventServiceFutureStub newFutureStub(
io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public EventServiceFutureStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new EventServiceFutureStub(channel, callOptions);
}
};
return EventServiceFutureStub.newStub(factory, channel);
}
/**
*/
public static abstract class EventServiceImplBase implements io.grpc.BindableService {
/**
*/
public void subscribe(com.webull.openapi.trade.events.internal.proto.Events.SubscribeRequest request,
io.grpc.stub.StreamObserver responseObserver) {
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(getSubscribeMethod(), responseObserver);
}
@java.lang.Override public final io.grpc.ServerServiceDefinition bindService() {
return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor())
.addMethod(
getSubscribeMethod(),
io.grpc.stub.ServerCalls.asyncServerStreamingCall(
new MethodHandlers<
com.webull.openapi.trade.events.internal.proto.Events.SubscribeRequest,
com.webull.openapi.trade.events.internal.proto.Events.SubscribeResponse>(
this, METHODID_SUBSCRIBE)))
.build();
}
}
/**
*/
public static final class EventServiceStub extends io.grpc.stub.AbstractAsyncStub {
private EventServiceStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected EventServiceStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new EventServiceStub(channel, callOptions);
}
/**
*/
public void subscribe(com.webull.openapi.trade.events.internal.proto.Events.SubscribeRequest request,
io.grpc.stub.StreamObserver responseObserver) {
io.grpc.stub.ClientCalls.asyncServerStreamingCall(
getChannel().newCall(getSubscribeMethod(), getCallOptions()), request, responseObserver);
}
}
/**
*/
public static final class EventServiceBlockingStub extends io.grpc.stub.AbstractBlockingStub {
private EventServiceBlockingStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected EventServiceBlockingStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new EventServiceBlockingStub(channel, callOptions);
}
/**
*/
public java.util.Iterator subscribe(
com.webull.openapi.trade.events.internal.proto.Events.SubscribeRequest request) {
return io.grpc.stub.ClientCalls.blockingServerStreamingCall(
getChannel(), getSubscribeMethod(), getCallOptions(), request);
}
}
/**
*/
public static final class EventServiceFutureStub extends io.grpc.stub.AbstractFutureStub {
private EventServiceFutureStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected EventServiceFutureStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new EventServiceFutureStub(channel, callOptions);
}
}
private static final int METHODID_SUBSCRIBE = 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 EventServiceImplBase serviceImpl;
private final int methodId;
MethodHandlers(EventServiceImplBase 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_SUBSCRIBE:
serviceImpl.subscribe((com.webull.openapi.trade.events.internal.proto.Events.SubscribeRequest) 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 EventServiceBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoFileDescriptorSupplier, io.grpc.protobuf.ProtoServiceDescriptorSupplier {
EventServiceBaseDescriptorSupplier() {}
@java.lang.Override
public com.google.protobuf.Descriptors.FileDescriptor getFileDescriptor() {
return com.webull.openapi.trade.events.internal.proto.Events.getDescriptor();
}
@java.lang.Override
public com.google.protobuf.Descriptors.ServiceDescriptor getServiceDescriptor() {
return getFileDescriptor().findServiceByName("EventService");
}
}
private static final class EventServiceFileDescriptorSupplier
extends EventServiceBaseDescriptorSupplier {
EventServiceFileDescriptorSupplier() {}
}
private static final class EventServiceMethodDescriptorSupplier
extends EventServiceBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoMethodDescriptorSupplier {
private final String methodName;
EventServiceMethodDescriptorSupplier(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 (EventServiceGrpc.class) {
result = serviceDescriptor;
if (result == null) {
serviceDescriptor = result = io.grpc.ServiceDescriptor.newBuilder(SERVICE_NAME)
.setSchemaDescriptor(new EventServiceFileDescriptorSupplier())
.addMethod(getSubscribeMethod())
.build();
}
}
}
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy