All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.milvus.grpc.QueryRequestOrBuilder Maven / Gradle / Ivy

Go to download

Java SDK for Milvus, a distributed high-performance vector search engine. update grpc to 1.42.1 update protobuf to 3.19.1

There is a newer version: 2.2.2.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: milvus.proto

package io.milvus.grpc;

public interface QueryRequestOrBuilder extends
    // @@protoc_insertion_point(interface_extends:milvus.proto.milvus.QueryRequest)
    com.google.protobuf.MessageOrBuilder {

  /**
   * .milvus.proto.common.MsgBase base = 1;
   * @return Whether the base field is set.
   */
  boolean hasBase();
  /**
   * .milvus.proto.common.MsgBase base = 1;
   * @return The base.
   */
  io.milvus.grpc.MsgBase getBase();
  /**
   * .milvus.proto.common.MsgBase base = 1;
   */
  io.milvus.grpc.MsgBaseOrBuilder getBaseOrBuilder();

  /**
   * 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();

  /**
   * string collection_name = 3;
   * @return The collectionName.
   */
  java.lang.String getCollectionName();
  /**
   * string collection_name = 3;
   * @return The bytes for collectionName.
   */
  com.google.protobuf.ByteString
      getCollectionNameBytes();

  /**
   * string expr = 4;
   * @return The expr.
   */
  java.lang.String getExpr();
  /**
   * string expr = 4;
   * @return The bytes for expr.
   */
  com.google.protobuf.ByteString
      getExprBytes();

  /**
   * repeated string output_fields = 5;
   * @return A list containing the outputFields.
   */
  java.util.List
      getOutputFieldsList();
  /**
   * repeated string output_fields = 5;
   * @return The count of outputFields.
   */
  int getOutputFieldsCount();
  /**
   * repeated string output_fields = 5;
   * @param index The index of the element to return.
   * @return The outputFields at the given index.
   */
  java.lang.String getOutputFields(int index);
  /**
   * repeated string output_fields = 5;
   * @param index The index of the value to return.
   * @return The bytes of the outputFields at the given index.
   */
  com.google.protobuf.ByteString
      getOutputFieldsBytes(int index);

  /**
   * repeated string partition_names = 6;
   * @return A list containing the partitionNames.
   */
  java.util.List
      getPartitionNamesList();
  /**
   * repeated string partition_names = 6;
   * @return The count of partitionNames.
   */
  int getPartitionNamesCount();
  /**
   * repeated string partition_names = 6;
   * @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 = 6;
   * @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);

  /**
   * uint64 travel_timestamp = 7;
   * @return The travelTimestamp.
   */
  long getTravelTimestamp();

  /**
   * 
   * guarantee_timestamp
   * 
* * uint64 guarantee_timestamp = 8; * @return The guaranteeTimestamp. */ long getGuaranteeTimestamp(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy