Interface MutationResultOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
MutationResult, MutationResult.Builder

public interface MutationResultOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    bool acknowledged = 5;
    long
    int64 delete_cnt = 7;
    int
    getErrIndex(int index)
    error indexes indicate
    int
    error indexes indicate
    error indexes indicate
    required for insert, delete, upsert
    required for insert, delete, upsert
    long
    int64 insert_cnt = 6;
    .milvus.proto.common.Status status = 1;
    .milvus.proto.common.Status status = 1;
    int
    getSuccIndex(int index)
    error indexes indicate
    int
    error indexes indicate
    error indexes indicate
    long
    uint64 timestamp = 9;
    long
    int64 upsert_cnt = 8;
    boolean
    required for insert, delete, upsert
    boolean
    .milvus.proto.common.Status status = 1;

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • hasStatus

      boolean hasStatus()
      .milvus.proto.common.Status status = 1;
      Returns:
      Whether the status field is set.
    • getStatus

      Status getStatus()
      .milvus.proto.common.Status status = 1;
      Returns:
      The status.
    • getStatusOrBuilder

      StatusOrBuilder getStatusOrBuilder()
      .milvus.proto.common.Status status = 1;
    • hasIDs

      boolean hasIDs()
       required for insert, delete, upsert
       
      .milvus.proto.schema.IDs IDs = 2;
      Returns:
      Whether the iDs field is set.
    • getIDs

      IDs getIDs()
       required for insert, delete, upsert
       
      .milvus.proto.schema.IDs IDs = 2;
      Returns:
      The iDs.
    • getIDsOrBuilder

      IDsOrBuilder getIDsOrBuilder()
       required for insert, delete, upsert
       
      .milvus.proto.schema.IDs IDs = 2;
    • getSuccIndexList

      List<Integer> getSuccIndexList()
       error indexes indicate
       
      repeated uint32 succ_index = 3;
      Returns:
      A list containing the succIndex.
    • getSuccIndexCount

      int getSuccIndexCount()
       error indexes indicate
       
      repeated uint32 succ_index = 3;
      Returns:
      The count of succIndex.
    • getSuccIndex

      int getSuccIndex(int index)
       error indexes indicate
       
      repeated uint32 succ_index = 3;
      Parameters:
      index - The index of the element to return.
      Returns:
      The succIndex at the given index.
    • getErrIndexList

      List<Integer> getErrIndexList()
       error indexes indicate
       
      repeated uint32 err_index = 4;
      Returns:
      A list containing the errIndex.
    • getErrIndexCount

      int getErrIndexCount()
       error indexes indicate
       
      repeated uint32 err_index = 4;
      Returns:
      The count of errIndex.
    • getErrIndex

      int getErrIndex(int index)
       error indexes indicate
       
      repeated uint32 err_index = 4;
      Parameters:
      index - The index of the element to return.
      Returns:
      The errIndex at the given index.
    • getAcknowledged

      boolean getAcknowledged()
      bool acknowledged = 5;
      Returns:
      The acknowledged.
    • getInsertCnt

      long getInsertCnt()
      int64 insert_cnt = 6;
      Returns:
      The insertCnt.
    • getDeleteCnt

      long getDeleteCnt()
      int64 delete_cnt = 7;
      Returns:
      The deleteCnt.
    • getUpsertCnt

      long getUpsertCnt()
      int64 upsert_cnt = 8;
      Returns:
      The upsertCnt.
    • getTimestamp

      long getTimestamp()
      uint64 timestamp = 9;
      Returns:
      The timestamp.