io.milvus.grpc.GetPersistentSegmentInfoResponseOrBuilder 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 GetPersistentSegmentInfoResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.GetPersistentSegmentInfoResponse)
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();
/**
* repeated .milvus.proto.milvus.PersistentSegmentInfo infos = 2;
*/
java.util.List
getInfosList();
/**
* repeated .milvus.proto.milvus.PersistentSegmentInfo infos = 2;
*/
io.milvus.grpc.PersistentSegmentInfo getInfos(int index);
/**
* repeated .milvus.proto.milvus.PersistentSegmentInfo infos = 2;
*/
int getInfosCount();
/**
* repeated .milvus.proto.milvus.PersistentSegmentInfo infos = 2;
*/
java.util.List extends io.milvus.grpc.PersistentSegmentInfoOrBuilder>
getInfosOrBuilderList();
/**
* repeated .milvus.proto.milvus.PersistentSegmentInfo infos = 2;
*/
io.milvus.grpc.PersistentSegmentInfoOrBuilder getInfosOrBuilder(
int index);
}