io.milvus.grpc.FlushResponseOrBuilder 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 FlushResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.FlushResponse)
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();
/**
* string db_name = 2;
* @return The dbName.
*/
java.lang.String getDbName();
/**
* string db_name = 2;
* @return The bytes for dbName.
*/
com.google.protobuf.ByteString
getDbNameBytes();
/**
* map<string, .milvus.proto.schema.LongArray> coll_segIDs = 3;
*/
int getCollSegIDsCount();
/**
* map<string, .milvus.proto.schema.LongArray> coll_segIDs = 3;
*/
boolean containsCollSegIDs(
java.lang.String key);
/**
* Use {@link #getCollSegIDsMap()} instead.
*/
@java.lang.Deprecated
java.util.Map
getCollSegIDs();
/**
* map<string, .milvus.proto.schema.LongArray> coll_segIDs = 3;
*/
java.util.Map
getCollSegIDsMap();
/**
* map<string, .milvus.proto.schema.LongArray> coll_segIDs = 3;
*/
io.milvus.grpc.LongArray getCollSegIDsOrDefault(
java.lang.String key,
io.milvus.grpc.LongArray defaultValue);
/**
* map<string, .milvus.proto.schema.LongArray> coll_segIDs = 3;
*/
io.milvus.grpc.LongArray getCollSegIDsOrThrow(
java.lang.String key);
}