io.milvus.grpc.StatusOrBuilder 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: common.proto
package io.milvus.grpc;
public interface StatusOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.common.Status)
com.google.protobuf.MessageOrBuilder {
/**
* .milvus.proto.common.ErrorCode error_code = 1 [deprecated = true];
* @deprecated milvus.proto.common.Status.error_code is deprecated.
* See common.proto;l=105
* @return The enum numeric value on the wire for errorCode.
*/
@java.lang.Deprecated int getErrorCodeValue();
/**
* .milvus.proto.common.ErrorCode error_code = 1 [deprecated = true];
* @deprecated milvus.proto.common.Status.error_code is deprecated.
* See common.proto;l=105
* @return The errorCode.
*/
@java.lang.Deprecated io.milvus.grpc.ErrorCode getErrorCode();
/**
* string reason = 2;
* @return The reason.
*/
java.lang.String getReason();
/**
* string reason = 2;
* @return The bytes for reason.
*/
com.google.protobuf.ByteString
getReasonBytes();
/**
* int32 code = 3;
* @return The code.
*/
int getCode();
/**
* bool retriable = 4;
* @return The retriable.
*/
boolean getRetriable();
/**
* string detail = 5;
* @return The detail.
*/
java.lang.String getDetail();
/**
* string detail = 5;
* @return The bytes for detail.
*/
com.google.protobuf.ByteString
getDetailBytes();
}