Package io.milvus.grpc
Interface QuerySegmentInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
QuerySegmentInfo,QuerySegmentInfo.Builder
public interface QuerySegmentInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetCollectionID()int64 collectionID = 2;longgetIndexID()int64 indexID = 7;StringgetIndexName()string index_name = 6;com.google.protobuf.ByteStringgetIndexNameBytes()string index_name = 6;longgetMemSize()int64 mem_size = 4;longgetNodeID()int64 nodeID = 8;longgetNumRows()int64 num_rows = 5;longgetPartitionID()int64 partitionID = 3;longgetSegmentID()int64 segmentID = 1;SegmentStategetState().common.SegmentState state = 9;intgetStateValue().common.SegmentState state = 9;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSegmentID
long getSegmentID()
int64 segmentID = 1;- Returns:
- The segmentID.
-
getCollectionID
long getCollectionID()
int64 collectionID = 2;- Returns:
- The collectionID.
-
getPartitionID
long getPartitionID()
int64 partitionID = 3;- Returns:
- The partitionID.
-
getMemSize
long getMemSize()
int64 mem_size = 4;- Returns:
- The memSize.
-
getNumRows
long getNumRows()
int64 num_rows = 5;- Returns:
- The numRows.
-
getIndexName
String getIndexName()
string index_name = 6;- Returns:
- The indexName.
-
getIndexNameBytes
com.google.protobuf.ByteString getIndexNameBytes()
string index_name = 6;- Returns:
- The bytes for indexName.
-
getIndexID
long getIndexID()
int64 indexID = 7;- Returns:
- The indexID.
-
getNodeID
long getNodeID()
int64 nodeID = 8;- Returns:
- The nodeID.
-
getStateValue
int getStateValue()
.common.SegmentState state = 9;- Returns:
- The enum numeric value on the wire for state.
-
getState
SegmentState getState()
.common.SegmentState state = 9;- Returns:
- The state.
-
-