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 database.
// 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;
*/
/* nullable */
io.milvus.grpc.LongArray getCollSegIDsOrDefault(
java.lang.String key,
/* nullable */
io.milvus.grpc.LongArray defaultValue);
/**
* map<string, .milvus.proto.schema.LongArray> coll_segIDs = 3;
*/
io.milvus.grpc.LongArray getCollSegIDsOrThrow(
java.lang.String key);
/**
* map<string, .milvus.proto.schema.LongArray> flush_coll_segIDs = 4;
*/
int getFlushCollSegIDsCount();
/**
* map<string, .milvus.proto.schema.LongArray> flush_coll_segIDs = 4;
*/
boolean containsFlushCollSegIDs(
java.lang.String key);
/**
* Use {@link #getFlushCollSegIDsMap()} instead.
*/
@java.lang.Deprecated
java.util.Map
getFlushCollSegIDs();
/**
* map<string, .milvus.proto.schema.LongArray> flush_coll_segIDs = 4;
*/
java.util.Map
getFlushCollSegIDsMap();
/**
* map<string, .milvus.proto.schema.LongArray> flush_coll_segIDs = 4;
*/
/* nullable */
io.milvus.grpc.LongArray getFlushCollSegIDsOrDefault(
java.lang.String key,
/* nullable */
io.milvus.grpc.LongArray defaultValue);
/**
* map<string, .milvus.proto.schema.LongArray> flush_coll_segIDs = 4;
*/
io.milvus.grpc.LongArray getFlushCollSegIDsOrThrow(
java.lang.String key);
/**
*
* physical time for backup tool
*
*
* map<string, int64> coll_seal_times = 5;
*/
int getCollSealTimesCount();
/**
*
* physical time for backup tool
*
*
* map<string, int64> coll_seal_times = 5;
*/
boolean containsCollSealTimes(
java.lang.String key);
/**
* Use {@link #getCollSealTimesMap()} instead.
*/
@java.lang.Deprecated
java.util.Map
getCollSealTimes();
/**
*
* physical time for backup tool
*
*
* map<string, int64> coll_seal_times = 5;
*/
java.util.Map
getCollSealTimesMap();
/**
*
* physical time for backup tool
*
*
* map<string, int64> coll_seal_times = 5;
*/
long getCollSealTimesOrDefault(
java.lang.String key,
long defaultValue);
/**
*
* physical time for backup tool
*
*
* map<string, int64> coll_seal_times = 5;
*/
long getCollSealTimesOrThrow(
java.lang.String key);
/**
*
* hybrid ts for geting flush tate
*
*
* map<string, uint64> coll_flush_ts = 6;
*/
int getCollFlushTsCount();
/**
*
* hybrid ts for geting flush tate
*
*
* map<string, uint64> coll_flush_ts = 6;
*/
boolean containsCollFlushTs(
java.lang.String key);
/**
* Use {@link #getCollFlushTsMap()} instead.
*/
@java.lang.Deprecated
java.util.Map
getCollFlushTs();
/**
*
* hybrid ts for geting flush tate
*
*
* map<string, uint64> coll_flush_ts = 6;
*/
java.util.Map
getCollFlushTsMap();
/**
*
* hybrid ts for geting flush tate
*
*
* map<string, uint64> coll_flush_ts = 6;
*/
long getCollFlushTsOrDefault(
java.lang.String key,
long defaultValue);
/**
*
* hybrid ts for geting flush tate
*
*
* map<string, uint64> coll_flush_ts = 6;
*/
long getCollFlushTsOrThrow(
java.lang.String key);
/**
* map<string, .milvus.proto.msg.MsgPosition> channel_cps = 7;
*/
int getChannelCpsCount();
/**
* map<string, .milvus.proto.msg.MsgPosition> channel_cps = 7;
*/
boolean containsChannelCps(
java.lang.String key);
/**
* Use {@link #getChannelCpsMap()} instead.
*/
@java.lang.Deprecated
java.util.Map
getChannelCps();
/**
* map<string, .milvus.proto.msg.MsgPosition> channel_cps = 7;
*/
java.util.Map
getChannelCpsMap();
/**
* map<string, .milvus.proto.msg.MsgPosition> channel_cps = 7;
*/
/* nullable */
milvus.proto.msg.Msg.MsgPosition getChannelCpsOrDefault(
java.lang.String key,
/* nullable */
milvus.proto.msg.Msg.MsgPosition defaultValue);
/**
* map<string, .milvus.proto.msg.MsgPosition> channel_cps = 7;
*/
milvus.proto.msg.Msg.MsgPosition getChannelCpsOrThrow(
java.lang.String key);
}