io.milvus.v2.common.IndexBuildState 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.
package io.milvus.v2.common;
public enum IndexBuildState {
IndexStateNone,
Unissued,
InProgress,
Finished,
Failed,
Retry,
}