All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.milvus.grpc.MutationResultOrBuilder Maven / Gradle / Ivy

Go to download

Java SDK for Milvus, a distributed high-performance vector search engine. update grpc to 1.42.1 update protobuf to 3.19.1

There is a newer version: 2.2.2.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: milvus.proto

package io.milvus.grpc;

public interface MutationResultOrBuilder extends
    // @@protoc_insertion_point(interface_extends:milvus.proto.milvus.MutationResult)
    com.google.protobuf.MessageOrBuilder {

  /**
   * .milvus.proto.common.Status status = 1;
   * @return Whether the status field is set.
   */
  boolean hasStatus();
  /**
   * .milvus.proto.common.Status status = 1;
   * @return The status.
   */
  io.milvus.grpc.Status getStatus();
  /**
   * .milvus.proto.common.Status status = 1;
   */
  io.milvus.grpc.StatusOrBuilder getStatusOrBuilder();

  /**
   * 
   * required for insert, delete
   * 
* * .milvus.proto.schema.IDs IDs = 2; * @return Whether the iDs field is set. */ boolean hasIDs(); /** *
   * required for insert, delete
   * 
* * .milvus.proto.schema.IDs IDs = 2; * @return The iDs. */ io.milvus.grpc.IDs getIDs(); /** *
   * required for insert, delete
   * 
* * .milvus.proto.schema.IDs IDs = 2; */ io.milvus.grpc.IDsOrBuilder getIDsOrBuilder(); /** *
   * error indexes indicate
   * 
* * repeated uint32 succ_index = 3; * @return A list containing the succIndex. */ java.util.List getSuccIndexList(); /** *
   * error indexes indicate
   * 
* * repeated uint32 succ_index = 3; * @return The count of succIndex. */ int getSuccIndexCount(); /** *
   * error indexes indicate
   * 
* * repeated uint32 succ_index = 3; * @param index The index of the element to return. * @return The succIndex at the given index. */ int getSuccIndex(int index); /** *
   * error indexes indicate
   * 
* * repeated uint32 err_index = 4; * @return A list containing the errIndex. */ java.util.List getErrIndexList(); /** *
   * error indexes indicate
   * 
* * repeated uint32 err_index = 4; * @return The count of errIndex. */ int getErrIndexCount(); /** *
   * error indexes indicate
   * 
* * repeated uint32 err_index = 4; * @param index The index of the element to return. * @return The errIndex at the given index. */ int getErrIndex(int index); /** * bool acknowledged = 5; * @return The acknowledged. */ boolean getAcknowledged(); /** * int64 insert_cnt = 6; * @return The insertCnt. */ long getInsertCnt(); /** * int64 delete_cnt = 7; * @return The deleteCnt. */ long getDeleteCnt(); /** * int64 upsert_cnt = 8; * @return The upsertCnt. */ long getUpsertCnt(); /** * uint64 timestamp = 9; * @return The timestamp. */ long getTimestamp(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy