io.milvus.grpc.ProxyServiceGrpc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of milvus-sdk-java Show documentation
Show all versions of milvus-sdk-java Show documentation
Java SDK for Milvus, a distributed high-performance vector search engine.
update grpc to 1.42.1
update protobuf to 3.19.1
package io.milvus.grpc;
import static io.grpc.MethodDescriptor.generateFullMethodName;
/**
*/
@javax.annotation.Generated(
value = "by gRPC proto compiler (version 1.42.1)",
comments = "Source: milvus.proto")
@io.grpc.stub.annotations.GrpcGenerated
public final class ProxyServiceGrpc {
private ProxyServiceGrpc() {}
public static final String SERVICE_NAME = "milvus.proto.milvus.ProxyService";
// Static method descriptors that strictly reflect the proto.
private static volatile io.grpc.MethodDescriptor getRegisterLinkMethod;
@io.grpc.stub.annotations.RpcMethod(
fullMethodName = SERVICE_NAME + '/' + "RegisterLink",
requestType = io.milvus.grpc.RegisterLinkRequest.class,
responseType = io.milvus.grpc.RegisterLinkResponse.class,
methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
public static io.grpc.MethodDescriptor getRegisterLinkMethod() {
io.grpc.MethodDescriptor getRegisterLinkMethod;
if ((getRegisterLinkMethod = ProxyServiceGrpc.getRegisterLinkMethod) == null) {
synchronized (ProxyServiceGrpc.class) {
if ((getRegisterLinkMethod = ProxyServiceGrpc.getRegisterLinkMethod) == null) {
ProxyServiceGrpc.getRegisterLinkMethod = getRegisterLinkMethod =
io.grpc.MethodDescriptor.newBuilder()
.setType(io.grpc.MethodDescriptor.MethodType.UNARY)
.setFullMethodName(generateFullMethodName(SERVICE_NAME, "RegisterLink"))
.setSampledToLocalTracing(true)
.setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
io.milvus.grpc.RegisterLinkRequest.getDefaultInstance()))
.setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller(
io.milvus.grpc.RegisterLinkResponse.getDefaultInstance()))
.setSchemaDescriptor(new ProxyServiceMethodDescriptorSupplier("RegisterLink"))
.build();
}
}
}
return getRegisterLinkMethod;
}
/**
* Creates a new async stub that supports all call types for the service
*/
public static ProxyServiceStub newStub(io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public ProxyServiceStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new ProxyServiceStub(channel, callOptions);
}
};
return ProxyServiceStub.newStub(factory, channel);
}
/**
* Creates a new blocking-style stub that supports unary and streaming output calls on the service
*/
public static ProxyServiceBlockingStub newBlockingStub(
io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public ProxyServiceBlockingStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new ProxyServiceBlockingStub(channel, callOptions);
}
};
return ProxyServiceBlockingStub.newStub(factory, channel);
}
/**
* Creates a new ListenableFuture-style stub that supports unary calls on the service
*/
public static ProxyServiceFutureStub newFutureStub(
io.grpc.Channel channel) {
io.grpc.stub.AbstractStub.StubFactory factory =
new io.grpc.stub.AbstractStub.StubFactory() {
@java.lang.Override
public ProxyServiceFutureStub newStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new ProxyServiceFutureStub(channel, callOptions);
}
};
return ProxyServiceFutureStub.newStub(factory, channel);
}
/**
*/
public static abstract class ProxyServiceImplBase implements io.grpc.BindableService {
/**
*/
public void registerLink(io.milvus.grpc.RegisterLinkRequest request,
io.grpc.stub.StreamObserver responseObserver) {
io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(getRegisterLinkMethod(), responseObserver);
}
@java.lang.Override public final io.grpc.ServerServiceDefinition bindService() {
return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor())
.addMethod(
getRegisterLinkMethod(),
io.grpc.stub.ServerCalls.asyncUnaryCall(
new MethodHandlers<
io.milvus.grpc.RegisterLinkRequest,
io.milvus.grpc.RegisterLinkResponse>(
this, METHODID_REGISTER_LINK)))
.build();
}
}
/**
*/
public static final class ProxyServiceStub extends io.grpc.stub.AbstractAsyncStub {
private ProxyServiceStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected ProxyServiceStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new ProxyServiceStub(channel, callOptions);
}
/**
*/
public void registerLink(io.milvus.grpc.RegisterLinkRequest request,
io.grpc.stub.StreamObserver responseObserver) {
io.grpc.stub.ClientCalls.asyncUnaryCall(
getChannel().newCall(getRegisterLinkMethod(), getCallOptions()), request, responseObserver);
}
}
/**
*/
public static final class ProxyServiceBlockingStub extends io.grpc.stub.AbstractBlockingStub {
private ProxyServiceBlockingStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected ProxyServiceBlockingStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new ProxyServiceBlockingStub(channel, callOptions);
}
/**
*/
public io.milvus.grpc.RegisterLinkResponse registerLink(io.milvus.grpc.RegisterLinkRequest request) {
return io.grpc.stub.ClientCalls.blockingUnaryCall(
getChannel(), getRegisterLinkMethod(), getCallOptions(), request);
}
}
/**
*/
public static final class ProxyServiceFutureStub extends io.grpc.stub.AbstractFutureStub {
private ProxyServiceFutureStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
@java.lang.Override
protected ProxyServiceFutureStub build(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new ProxyServiceFutureStub(channel, callOptions);
}
/**
*/
public com.google.common.util.concurrent.ListenableFuture registerLink(
io.milvus.grpc.RegisterLinkRequest request) {
return io.grpc.stub.ClientCalls.futureUnaryCall(
getChannel().newCall(getRegisterLinkMethod(), getCallOptions()), request);
}
}
private static final int METHODID_REGISTER_LINK = 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 ProxyServiceImplBase serviceImpl;
private final int methodId;
MethodHandlers(ProxyServiceImplBase 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_REGISTER_LINK:
serviceImpl.registerLink((io.milvus.grpc.RegisterLinkRequest) 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 ProxyServiceBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoFileDescriptorSupplier, io.grpc.protobuf.ProtoServiceDescriptorSupplier {
ProxyServiceBaseDescriptorSupplier() {}
@java.lang.Override
public com.google.protobuf.Descriptors.FileDescriptor getFileDescriptor() {
return io.milvus.grpc.MilvusProto.getDescriptor();
}
@java.lang.Override
public com.google.protobuf.Descriptors.ServiceDescriptor getServiceDescriptor() {
return getFileDescriptor().findServiceByName("ProxyService");
}
}
private static final class ProxyServiceFileDescriptorSupplier
extends ProxyServiceBaseDescriptorSupplier {
ProxyServiceFileDescriptorSupplier() {}
}
private static final class ProxyServiceMethodDescriptorSupplier
extends ProxyServiceBaseDescriptorSupplier
implements io.grpc.protobuf.ProtoMethodDescriptorSupplier {
private final String methodName;
ProxyServiceMethodDescriptorSupplier(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 (ProxyServiceGrpc.class) {
result = serviceDescriptor;
if (result == null) {
serviceDescriptor = result = io.grpc.ServiceDescriptor.newBuilder(SERVICE_NAME)
.setSchemaDescriptor(new ProxyServiceFileDescriptorSupplier())
.addMethod(getRegisterLinkMethod())
.build();
}
}
}
return result;
}
}