io.milvus.grpc.DescribeSegmentResponseOrBuilder 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 DescribeSegmentResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.DescribeSegmentResponse)
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();
/**
* int64 indexID = 2;
* @return The indexID.
*/
long getIndexID();
/**
* int64 buildID = 3;
* @return The buildID.
*/
long getBuildID();
/**
* bool enable_index = 4;
* @return The enableIndex.
*/
boolean getEnableIndex();
/**
* int64 fieldID = 5;
* @return The fieldID.
*/
long getFieldID();
}