io.milvus.grpc.ImportResponseOrBuilder 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 database.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: milvus.proto
package io.milvus.grpc;
public interface ImportResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.ImportResponse)
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();
/**
*
* id array of import tasks
*
*
* repeated int64 tasks = 2;
* @return A list containing the tasks.
*/
java.util.List getTasksList();
/**
*
* id array of import tasks
*
*
* repeated int64 tasks = 2;
* @return The count of tasks.
*/
int getTasksCount();
/**
*
* id array of import tasks
*
*
* repeated int64 tasks = 2;
* @param index The index of the element to return.
* @return The tasks at the given index.
*/
long getTasks(int index);
}