com.yelp.nrtsearch.server.grpc.FileInfoOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clientlib Show documentation
Show all versions of clientlib Show documentation
GRPC Clientlib for nrtSearch
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: yelp/nrtsearch/luceneserver.proto
// Protobuf Java Version: 3.25.3
package com.yelp.nrtsearch.server.grpc;
public interface FileInfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:luceneserver.FileInfo)
com.google.protobuf.MessageOrBuilder {
/**
*
* Name of the file the replica wants primary to send
*
*
* string fileName = 1;
* @return The fileName.
*/
java.lang.String getFileName();
/**
*
* Name of the file the replica wants primary to send
*
*
* string fileName = 1;
* @return The bytes for fileName.
*/
com.google.protobuf.ByteString
getFileNameBytes();
/**
*
* Starting offset in the file primary should start sending bytes from:
*
*
* int64 fpStart = 2;
* @return The fpStart.
*/
long getFpStart();
/**
*
*index name these files belong to
*
*
* string indexName = 3;
* @return The indexName.
*/
java.lang.String getIndexName();
/**
*
*index name these files belong to
*
*
* string indexName = 3;
* @return The bytes for indexName.
*/
com.google.protobuf.ByteString
getIndexNameBytes();
/**
*
* sequence number to ack, only used for acked file copy
*
*
* int32 ackSeqNum = 4;
* @return The ackSeqNum.
*/
int getAckSeqNum();
/**
*
* index id
*
*
* string indexId = 5;
* @return The indexId.
*/
java.lang.String getIndexId();
/**
*
* index id
*
*
* string indexId = 5;
* @return The bytes for indexId.
*/
com.google.protobuf.ByteString
getIndexIdBytes();
}