io.milvus.grpc.GetIndexStateResponseOrBuilder 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 GetIndexStateResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.GetIndexStateResponse)
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();
/**
* .milvus.proto.common.IndexState state = 2;
* @return The enum numeric value on the wire for state.
*/
int getStateValue();
/**
* .milvus.proto.common.IndexState state = 2;
* @return The state.
*/
io.milvus.grpc.IndexState getState();
/**
* string fail_reason = 3;
* @return The failReason.
*/
java.lang.String getFailReason();
/**
* string fail_reason = 3;
* @return The bytes for failReason.
*/
com.google.protobuf.ByteString
getFailReasonBytes();
}