Package io.milvus.grpc
Interface PersistentSegmentInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PersistentSegmentInfo,PersistentSegmentInfo.Builder
public interface PersistentSegmentInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetCollectionID()int64 collectionID = 2;longgetNumRows()int64 num_rows = 4;longgetPartitionID()int64 partitionID = 3;longgetSegmentID()int64 segmentID = 1;SegmentStategetState().milvus.proto.common.SegmentState state = 5;intgetStateValue().milvus.proto.common.SegmentState state = 5;-
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.
-
getNumRows
long getNumRows()
int64 num_rows = 4;- Returns:
- The numRows.
-
getStateValue
int getStateValue()
.milvus.proto.common.SegmentState state = 5;- Returns:
- The enum numeric value on the wire for state.
-
getState
SegmentState getState()
.milvus.proto.common.SegmentState state = 5;- Returns:
- The state.
-
-