io.milvus.grpc.LoadBalanceRequestOrBuilder 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
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: milvus.proto
package io.milvus.grpc;
public interface LoadBalanceRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.LoadBalanceRequest)
com.google.protobuf.MessageOrBuilder {
/**
* .milvus.proto.common.MsgBase base = 1;
* @return Whether the base field is set.
*/
boolean hasBase();
/**
* .milvus.proto.common.MsgBase base = 1;
* @return The base.
*/
io.milvus.grpc.MsgBase getBase();
/**
* .milvus.proto.common.MsgBase base = 1;
*/
io.milvus.grpc.MsgBaseOrBuilder getBaseOrBuilder();
/**
* int64 src_nodeID = 2;
* @return The srcNodeID.
*/
long getSrcNodeID();
/**
* repeated int64 dst_nodeIDs = 3;
* @return A list containing the dstNodeIDs.
*/
java.util.List getDstNodeIDsList();
/**
* repeated int64 dst_nodeIDs = 3;
* @return The count of dstNodeIDs.
*/
int getDstNodeIDsCount();
/**
* repeated int64 dst_nodeIDs = 3;
* @param index The index of the element to return.
* @return The dstNodeIDs at the given index.
*/
long getDstNodeIDs(int index);
/**
* repeated int64 sealed_segmentIDs = 4;
* @return A list containing the sealedSegmentIDs.
*/
java.util.List getSealedSegmentIDsList();
/**
* repeated int64 sealed_segmentIDs = 4;
* @return The count of sealedSegmentIDs.
*/
int getSealedSegmentIDsCount();
/**
* repeated int64 sealed_segmentIDs = 4;
* @param index The index of the element to return.
* @return The sealedSegmentIDs at the given index.
*/
long getSealedSegmentIDs(int index);
/**
* string collectionName = 5;
* @return The collectionName.
*/
java.lang.String getCollectionName();
/**
* string collectionName = 5;
* @return The bytes for collectionName.
*/
com.google.protobuf.ByteString
getCollectionNameBytes();
}