io.milvus.grpc.GetLoadStateRequestOrBuilder 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 GetLoadStateRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.GetLoadStateRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Not useful for now
*
*
* .milvus.proto.common.MsgBase base = 1;
* @return Whether the base field is set.
*/
boolean hasBase();
/**
*
* Not useful for now
*
*
* .milvus.proto.common.MsgBase base = 1;
* @return The base.
*/
io.milvus.grpc.MsgBase getBase();
/**
*
* Not useful for now
*
*
* .milvus.proto.common.MsgBase base = 1;
*/
io.milvus.grpc.MsgBaseOrBuilder getBaseOrBuilder();
/**
* string collection_name = 2;
* @return The collectionName.
*/
java.lang.String getCollectionName();
/**
* string collection_name = 2;
* @return The bytes for collectionName.
*/
com.google.protobuf.ByteString
getCollectionNameBytes();
/**
* repeated string partition_names = 3;
* @return A list containing the partitionNames.
*/
java.util.List
getPartitionNamesList();
/**
* repeated string partition_names = 3;
* @return The count of partitionNames.
*/
int getPartitionNamesCount();
/**
* repeated string partition_names = 3;
* @param index The index of the element to return.
* @return The partitionNames at the given index.
*/
java.lang.String getPartitionNames(int index);
/**
* repeated string partition_names = 3;
* @param index The index of the value to return.
* @return The bytes of the partitionNames at the given index.
*/
com.google.protobuf.ByteString
getPartitionNamesBytes(int index);
/**
* string db_name = 4;
* @return The dbName.
*/
java.lang.String getDbName();
/**
* string db_name = 4;
* @return The bytes for dbName.
*/
com.google.protobuf.ByteString
getDbNameBytes();
}