main.grpc.com.streamlayer.pass.passClient.PassClientGrpc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sl-protofiles Show documentation
Show all versions of sl-protofiles Show documentation
StreamLayer Java Protofiles
package com.streamlayer.pass.passClient;
import static io.grpc.MethodDescriptor.generateFullMethodName;
/**
*/
@javax.annotation.Generated(
value = "by gRPC proto compiler (version 1.65.1)",
comments = "Source: streamlayer/pass/passClient.proto")
@io.grpc.stub.annotations.GrpcGenerated
public final class PassClientGrpc {
private PassClientGrpc() {}
public static final java.lang.String SERVICE_NAME = "streamlayer.pass.PassClient";
// Static method descriptors that strictly reflect the proto.
private static volatile io.grpc.MethodDescriptor getGenerateMethod;
@io.grpc.stub.annotations.RpcMethod(
fullMethodName = SERVICE_NAME + '/' + "Generate",
requestType = com.streamlayer.pass.passClient.GenerateRequest.class,
responseType = com.streamlayer.pass.passClient.GenerateResponse.class,
methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
public static io.grpc.MethodDescriptor getGenerateMethod() {
io.grpc.MethodDescriptor getGenerateMethod;
if ((getGenerateMethod = PassClientGrpc.getGenerateMethod) == null) {
synchronized (PassClientGrpc.class) {
if ((getGenerateMethod = PassClientGrpc.getGenerateMethod) == null) {
PassClientGrpc.getGenerateMethod = getGenerateMethod =
io.grpc.MethodDescriptor.newBuilder()
.setType(io.grpc.MethodDescriptor.MethodType.UNARY)
.setFullMethodName(generateFullMethodName(SERVICE_NAME, "Generate"))
.setSampledToLocalTracing(true)
.setRequestMarshaller(io.grpc.protobuf.lite.ProtoLiteUtils.marshaller(
com.streamlayer.pass.passClient.GenerateRequest.getDefaultInstance()))
.setResponseMarshaller(io.grpc.protobuf.lite.ProtoLiteUtils.marshaller(
com.streamlayer.pass.passClient.GenerateResponse.getDefaultInstance()))
.build();
}
}
}
return getGenerateMethod;
}
/**
* Creates a new async stub that supports all call types for the service
*/
public static PassClientStub newStub(io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public PassClientStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new PassClientStub(channel, callOptions);
}
};
return PassClientStub.newStub(factory, channel);
}
/**
* Creates a new blocking-style stub that supports unary and streaming output calls on the service
*/
public static PassClientBlockingStub newBlockingStub(
io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public PassClientBlockingStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new PassClientBlockingStub(channel, callOptions);
}
};
return PassClientBlockingStub.newStub(factory, channel);
}
/**
* Creates a new ListenableFuture-style stub that supports unary calls on the service
*/
public static PassClientFutureStub newFutureStub(
io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public PassClientFutureStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new PassClientFutureStub(channel, callOptions);
}
};
return PassClientFutureStub.newStub(factory, channel);
}
/**
*/
public interface AsyncService {
/**
*/
default void generate(com.streamlayer.pass.passClient.GenerateRequest request,
io.grpc.stub.StreamObserver responseObserver) {
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(getGenerateMethod(), responseObserver);
}
}
/**
* Base class for the server implementation of the service PassClient.
*/
public static abstract class PassClientImplBase
implements io.grpc.BindableService, AsyncService {
@java.lang.Override public final io.grpc.ServerServiceDefinition bindService() {
return PassClientGrpc.bindService(this);
}
}
/**
* A stub to allow clients to do asynchronous rpc calls to service PassClient.
*/
public static final class PassClientStub
extends io.grpc.stub.AbstractAsyncStub {
private PassClientStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected PassClientStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new PassClientStub(channel, callOptions);
}
/**
*/
public void generate(com.streamlayer.pass.passClient.GenerateRequest request,
io.grpc.stub.StreamObserver responseObserver) {
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getGenerateMethod(), getCallOptions()), request, responseObserver);
}
}
/**
* A stub to allow clients to do synchronous rpc calls to service PassClient.
*/
public static final class PassClientBlockingStub
extends io.grpc.stub.AbstractBlockingStub {
private PassClientBlockingStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected PassClientBlockingStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new PassClientBlockingStub(channel, callOptions);
}
/**
*/
public com.streamlayer.pass.passClient.GenerateResponse generate(com.streamlayer.pass.passClient.GenerateRequest request) {
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getGenerateMethod(), getCallOptions(), request);
}
}
/**
* A stub to allow clients to do ListenableFuture-style rpc calls to service PassClient.
*/
public static final class PassClientFutureStub
extends io.grpc.stub.AbstractFutureStub {
private PassClientFutureStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected PassClientFutureStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new PassClientFutureStub(channel, callOptions);
}
/**
*/
public com.google.common.util.concurrent.ListenableFuture generate(
com.streamlayer.pass.passClient.GenerateRequest request) {
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getGenerateMethod(), getCallOptions()), request);
}
}
private static final int METHODID_GENERATE = 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 AsyncService serviceImpl;
private final int methodId;
MethodHandlers(AsyncService 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_GENERATE:
serviceImpl.generate((com.streamlayer.pass.passClient.GenerateRequest) 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();
}
}
}
public static final io.grpc.ServerServiceDefinition bindService(AsyncService service) {
return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor())
.addMethod(
getGenerateMethod(),
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
com.streamlayer.pass.passClient.GenerateRequest,
com.streamlayer.pass.passClient.GenerateResponse>(
service, METHODID_GENERATE)))
.build();
}
private static volatile io.grpc.ServiceDescriptor serviceDescriptor;
public static io.grpc.ServiceDescriptor getServiceDescriptor() {
io.grpc.ServiceDescriptor result = serviceDescriptor;
if (result == null) {
synchronized (PassClientGrpc.class) {
result = serviceDescriptor;
if (result == null) {
serviceDescriptor = result = io.grpc.ServiceDescriptor.newBuilder(SERVICE_NAME)
.addMethod(getGenerateMethod())
.build();
}
}
}
return result;
}
}