io.milvus.grpc.LoadCollectionRequestOrBuilder 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 LoadCollectionRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.milvus.LoadCollectionRequest)
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();
/**
*
* Not useful for now
*
*
* string db_name = 2;
* @return The dbName.
*/
java.lang.String getDbName();
/**
*
* Not useful for now
*
*
* string db_name = 2;
* @return The bytes for dbName.
*/
com.google.protobuf.ByteString
getDbNameBytes();
/**
*
* The collection name you want to load
*
*
* string collection_name = 3;
* @return The collectionName.
*/
java.lang.String getCollectionName();
/**
*
* The collection name you want to load
*
*
* string collection_name = 3;
* @return The bytes for collectionName.
*/
com.google.protobuf.ByteString
getCollectionNameBytes();
/**
*
* The replica number to load, default by 1
*
*
* int32 replica_number = 4;
* @return The replicaNumber.
*/
int getReplicaNumber();
}