proto.perm.QueryGrpc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of irita-sdk Show documentation
Show all versions of irita-sdk Show documentation
Irita open alliance chain SDK (java)
package proto.perm;
import static io.grpc.MethodDescriptor.generateFullMethodName;
/**
*
* Query defines the gRPC querier service for perm module
*
*/
@javax.annotation.Generated(
value = "by gRPC proto compiler (version 1.35.0)",
comments = "Source: perm/query.proto")
public final class QueryGrpc {
private QueryGrpc() {}
public static final String SERVICE_NAME = "iritamod.perm.Query";
// Static method descriptors that strictly reflect the proto.
private static volatile io.grpc.MethodDescriptor getRolesMethod;
@io.grpc.stub.annotations.RpcMethod(
fullMethodName = SERVICE_NAME + '/' + "Roles",
requestType = QueryOuterClass.QueryRolesRequest.class,
responseType = QueryOuterClass.QueryRolesResponse.class,
methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
public static io.grpc.MethodDescriptor getRolesMethod() {
io.grpc.MethodDescriptor getRolesMethod;
if ((getRolesMethod = QueryGrpc.getRolesMethod) == null) {
synchronized (QueryGrpc.class) {
if ((getRolesMethod = QueryGrpc.getRolesMethod) == null) {
QueryGrpc.getRolesMethod = getRolesMethod =
io.grpc.MethodDescriptor.newBuilder()
.setType(io.grpc.MethodDescriptor.MethodType.UNARY)
.setFullMethodName(generateFullMethodName(SERVICE_NAME, "Roles"))
.setSampledToLocalTracing(true)
.setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
QueryOuterClass.QueryRolesRequest.getDefaultInstance()))
.setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
QueryOuterClass.QueryRolesResponse.getDefaultInstance()))
.setSchemaDescriptor(new QueryMethodDescriptorSupplier("Roles"))
.build();
}
}
}
return getRolesMethod;
}
private static volatile io.grpc.MethodDescriptor getBlacklistMethod;
@io.grpc.stub.annotations.RpcMethod(
fullMethodName = SERVICE_NAME + '/' + "Blacklist",
requestType = QueryOuterClass.QueryBlacklistRequest.class,
responseType = QueryOuterClass.QueryBlacklistResponse.class,
methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
public static io.grpc.MethodDescriptor getBlacklistMethod() {
io.grpc.MethodDescriptor getBlacklistMethod;
if ((getBlacklistMethod = QueryGrpc.getBlacklistMethod) == null) {
synchronized (QueryGrpc.class) {
if ((getBlacklistMethod = QueryGrpc.getBlacklistMethod) == null) {
QueryGrpc.getBlacklistMethod = getBlacklistMethod =
io.grpc.MethodDescriptor.newBuilder()
.setType(io.grpc.MethodDescriptor.MethodType.UNARY)
.setFullMethodName(generateFullMethodName(SERVICE_NAME, "Blacklist"))
.setSampledToLocalTracing(true)
.setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
QueryOuterClass.QueryBlacklistRequest.getDefaultInstance()))
.setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
QueryOuterClass.QueryBlacklistResponse.getDefaultInstance()))
.setSchemaDescriptor(new QueryMethodDescriptorSupplier("Blacklist"))
.build();
}
}
}
return getBlacklistMethod;
}
/**
* Creates a new async stub that supports all call types for the service
*/
public static QueryStub newStub(io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@Override
public QueryStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new QueryStub(channel, callOptions);
}
};
return QueryStub.newStub(factory, channel);
}
/**
* Creates a new blocking-style stub that supports unary and streaming output calls on the service
*/
public static QueryBlockingStub newBlockingStub(
io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@Override
public QueryBlockingStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new QueryBlockingStub(channel, callOptions);
}
};
return QueryBlockingStub.newStub(factory, channel);
}
/**
* Creates a new ListenableFuture-style stub that supports unary calls on the service
*/
public static QueryFutureStub newFutureStub(
io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@Override
public QueryFutureStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new QueryFutureStub(channel, callOptions);
}
};
return QueryFutureStub.newStub(factory, channel);
}
/**
*
* Query defines the gRPC querier service for perm module
*
*/
public static abstract class QueryImplBase implements io.grpc.BindableService {
/**
*
* Roles queries the roles of a given address
*
*/
public void roles(QueryOuterClass.QueryRolesRequest request,
io.grpc.stub.StreamObserver responseObserver) {
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(getRolesMethod(), responseObserver);
}
/**
*
* Blacklist queries the black list
*
*/
public void blacklist(QueryOuterClass.QueryBlacklistRequest request,
io.grpc.stub.StreamObserver responseObserver) {
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(getBlacklistMethod(), responseObserver);
}
@Override public final io.grpc.ServerServiceDefinition bindService() {
return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor())
.addMethod(
getRolesMethod(),
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
QueryOuterClass.QueryRolesRequest,
QueryOuterClass.QueryRolesResponse>(
this, METHODID_ROLES)))
.addMethod(
getBlacklistMethod(),
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
QueryOuterClass.QueryBlacklistRequest,
QueryOuterClass.QueryBlacklistResponse>(
this, METHODID_BLACKLIST)))
.build();
}
}
/**
*
* Query defines the gRPC querier service for perm module
*
*/
public static final class QueryStub extends io.grpc.stub.AbstractAsyncStub {
private QueryStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@Override
protected QueryStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new QueryStub(channel, callOptions);
}
/**
*
* Roles queries the roles of a given address
*
*/
public void roles(QueryOuterClass.QueryRolesRequest request,
io.grpc.stub.StreamObserver responseObserver) {
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getRolesMethod(), getCallOptions()), request, responseObserver);
}
/**
*
* Blacklist queries the black list
*
*/
public void blacklist(QueryOuterClass.QueryBlacklistRequest request,
io.grpc.stub.StreamObserver responseObserver) {
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getBlacklistMethod(), getCallOptions()), request, responseObserver);
}
}
/**
*
* Query defines the gRPC querier service for perm module
*
*/
public static final class QueryBlockingStub extends io.grpc.stub.AbstractBlockingStub {
private QueryBlockingStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@Override
protected QueryBlockingStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new QueryBlockingStub(channel, callOptions);
}
/**
*
* Roles queries the roles of a given address
*
*/
public QueryOuterClass.QueryRolesResponse roles(QueryOuterClass.QueryRolesRequest request) {
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getRolesMethod(), getCallOptions(), request);
}
/**
*
* Blacklist queries the black list
*
*/
public QueryOuterClass.QueryBlacklistResponse blacklist(QueryOuterClass.QueryBlacklistRequest request) {
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getBlacklistMethod(), getCallOptions(), request);
}
}
/**
*
* Query defines the gRPC querier service for perm module
*
*/
public static final class QueryFutureStub extends io.grpc.stub.AbstractFutureStub {
private QueryFutureStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@Override
protected QueryFutureStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new QueryFutureStub(channel, callOptions);
}
/**
*
* Roles queries the roles of a given address
*
*/
public com.google.common.util.concurrent.ListenableFuture roles(
QueryOuterClass.QueryRolesRequest request) {
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getRolesMethod(), getCallOptions()), request);
}
/**
*
* Blacklist queries the black list
*
*/
public com.google.common.util.concurrent.ListenableFuture blacklist(
QueryOuterClass.QueryBlacklistRequest request) {
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getBlacklistMethod(), getCallOptions()), request);
}
}
private static final int METHODID_ROLES = 0;
private static final int METHODID_BLACKLIST = 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 QueryImplBase serviceImpl;
private final int methodId;
MethodHandlers(QueryImplBase serviceImpl, int methodId) {
this.serviceImpl = serviceImpl;
this.methodId = methodId;
}
@Override
@SuppressWarnings("unchecked")
public void invoke(Req request, io.grpc.stub.StreamObserver responseObserver) {
switch (methodId) {
case METHODID_ROLES:
serviceImpl.roles((QueryOuterClass.QueryRolesRequest) request,
(io.grpc.stub.StreamObserver) responseObserver);
break;
case METHODID_BLACKLIST:
serviceImpl.blacklist((QueryOuterClass.QueryBlacklistRequest) request,
(io.grpc.stub.StreamObserver) responseObserver);
break;
default:
throw new AssertionError();
}
}
@Override
@SuppressWarnings("unchecked")
public io.grpc.stub.StreamObserver invoke(
io.grpc.stub.StreamObserver responseObserver) {
switch (methodId) {
default:
throw new AssertionError();
}
}
}
private static abstract class QueryBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoFileDescriptorSupplier, io.grpc.protobuf.ProtoServiceDescriptorSupplier {
QueryBaseDescriptorSupplier() {}
@Override
public com.google.protobuf.Descriptors.FileDescriptor getFileDescriptor() {
return QueryOuterClass.getDescriptor();
}
@Override
public com.google.protobuf.Descriptors.ServiceDescriptor getServiceDescriptor() {
return getFileDescriptor().findServiceByName("Query");
}
}
private static final class QueryFileDescriptorSupplier
extends QueryBaseDescriptorSupplier {
QueryFileDescriptorSupplier() {}
}
private static final class QueryMethodDescriptorSupplier
extends QueryBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoMethodDescriptorSupplier {
private final String methodName;
QueryMethodDescriptorSupplier(String methodName) {
this.methodName = methodName;
}
@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 (QueryGrpc.class) {
result = serviceDescriptor;
if (result == null) {
serviceDescriptor = result = io.grpc.ServiceDescriptor.newBuilder(SERVICE_NAME)
.setSchemaDescriptor(new QueryFileDescriptorSupplier())
.addMethod(getRolesMethod())
.addMethod(getBlacklistMethod())
.build();
}
}
}
return result;
}
}