io.milvus.grpc.VectorIdsOrBuilder 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 VectorIdsOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.grpc.VectorIds)
com.google.protobuf.MessageOrBuilder {
/**
* .milvus.grpc.Status status = 1;
* @return Whether the status field is set.
*/
boolean hasStatus();
/**
* .milvus.grpc.Status status = 1;
* @return The status.
*/
io.milvus.grpc.Status getStatus();
/**
* .milvus.grpc.Status status = 1;
*/
io.milvus.grpc.StatusOrBuilder getStatusOrBuilder();
/**
* repeated int64 vector_id_array = 2;
* @return A list containing the vectorIdArray.
*/
java.util.List getVectorIdArrayList();
/**
* repeated int64 vector_id_array = 2;
* @return The count of vectorIdArray.
*/
int getVectorIdArrayCount();
/**
* repeated int64 vector_id_array = 2;
* @param index The index of the element to return.
* @return The vectorIdArray at the given index.
*/
long getVectorIdArray(int index);
}