io.milvus.grpc.PreloadCollectionParamOrBuilder 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 PreloadCollectionParamOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.grpc.PreloadCollectionParam)
com.google.protobuf.MessageOrBuilder {
/**
* string collection_name = 1;
* @return The collectionName.
*/
java.lang.String getCollectionName();
/**
* string collection_name = 1;
* @return The bytes for collectionName.
*/
com.google.protobuf.ByteString
getCollectionNameBytes();
/**
* repeated string partition_tag_array = 2;
* @return A list containing the partitionTagArray.
*/
java.util.List
getPartitionTagArrayList();
/**
* repeated string partition_tag_array = 2;
* @return The count of partitionTagArray.
*/
int getPartitionTagArrayCount();
/**
* repeated string partition_tag_array = 2;
* @param index The index of the element to return.
* @return The partitionTagArray at the given index.
*/
java.lang.String getPartitionTagArray(int index);
/**
* repeated string partition_tag_array = 2;
* @param index The index of the value to return.
* @return The bytes of the partitionTagArray at the given index.
*/
com.google.protobuf.ByteString
getPartitionTagArrayBytes(int index);
}