com.yelp.nrtsearch.server.grpc.StartIndexResponseOrBuilder 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
The newest version!
// 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 StartIndexResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:luceneserver.StartIndexResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
*one greater than the largest possible document number
*
*
* int32 maxDoc = 1;
* @return The maxDoc.
*/
int getMaxDoc();
/**
*
*the number of documents in this index.
*
*
* int32 numDocs = 2;
* @return The numDocs.
*/
int getNumDocs();
/**
*
*string representation of the IndexReader implementation
*
*
* string segments = 3;
* @return The segments.
*/
java.lang.String getSegments();
/**
*
*string representation of the IndexReader implementation
*
*
* string segments = 3;
* @return The bytes for segments.
*/
com.google.protobuf.ByteString
getSegmentsBytes();
/**
*
*time taken to start the index
*
*
* double startTimeMS = 4;
* @return The startTimeMS.
*/
double getStartTimeMS();
}