io.milvus.grpc.QuerySegmentInfoOrBuilder 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 QuerySegmentInfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.QuerySegmentInfo)
com.google.protobuf.MessageOrBuilder {
/**
* int64 segmentID = 1;
* @return The segmentID.
*/
long getSegmentID();
/**
* int64 collectionID = 2;
* @return The collectionID.
*/
long getCollectionID();
/**
* int64 partitionID = 3;
* @return The partitionID.
*/
long getPartitionID();
/**
* int64 mem_size = 4;
* @return The memSize.
*/
long getMemSize();
/**
* int64 num_rows = 5;
* @return The numRows.
*/
long getNumRows();
/**
* string index_name = 6;
* @return The indexName.
*/
java.lang.String getIndexName();
/**
* string index_name = 6;
* @return The bytes for indexName.
*/
com.google.protobuf.ByteString
getIndexNameBytes();
/**
* int64 indexID = 7;
* @return The indexID.
*/
long getIndexID();
/**
*
* deprecated, check node_ids(NodeIds) field
*
*
* int64 nodeID = 8;
* @return The nodeID.
*/
long getNodeID();
/**
* .milvus.proto.common.SegmentState state = 9;
* @return The enum numeric value on the wire for state.
*/
int getStateValue();
/**
* .milvus.proto.common.SegmentState state = 9;
* @return The state.
*/
io.milvus.grpc.SegmentState getState();
/**
* repeated int64 nodeIds = 10;
* @return A list containing the nodeIds.
*/
java.util.List getNodeIdsList();
/**
* repeated int64 nodeIds = 10;
* @return The count of nodeIds.
*/
int getNodeIdsCount();
/**
* repeated int64 nodeIds = 10;
* @param index The index of the element to return.
* @return The nodeIds at the given index.
*/
long getNodeIds(int index);
}