com.yelp.nrtsearch.server.grpc.CreateSnapshotResponseOrBuilder 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 CreateSnapshotResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:luceneserver.CreateSnapshotResponse)
com.google.protobuf.MessageOrBuilder {
/**
* repeated string indexFiles = 1;
* @return A list containing the indexFiles.
*/
java.util.List
getIndexFilesList();
/**
* repeated string indexFiles = 1;
* @return The count of indexFiles.
*/
int getIndexFilesCount();
/**
* repeated string indexFiles = 1;
* @param index The index of the element to return.
* @return The indexFiles at the given index.
*/
java.lang.String getIndexFiles(int index);
/**
* repeated string indexFiles = 1;
* @param index The index of the value to return.
* @return The bytes of the indexFiles at the given index.
*/
com.google.protobuf.ByteString
getIndexFilesBytes(int index);
/**
* repeated string taxonomyFiles = 2;
* @return A list containing the taxonomyFiles.
*/
java.util.List
getTaxonomyFilesList();
/**
* repeated string taxonomyFiles = 2;
* @return The count of taxonomyFiles.
*/
int getTaxonomyFilesCount();
/**
* repeated string taxonomyFiles = 2;
* @param index The index of the element to return.
* @return The taxonomyFiles at the given index.
*/
java.lang.String getTaxonomyFiles(int index);
/**
* repeated string taxonomyFiles = 2;
* @param index The index of the value to return.
* @return The bytes of the taxonomyFiles at the given index.
*/
com.google.protobuf.ByteString
getTaxonomyFilesBytes(int index);
/**
* repeated string stateFiles = 3;
* @return A list containing the stateFiles.
*/
java.util.List
getStateFilesList();
/**
* repeated string stateFiles = 3;
* @return The count of stateFiles.
*/
int getStateFilesCount();
/**
* repeated string stateFiles = 3;
* @param index The index of the element to return.
* @return The stateFiles at the given index.
*/
java.lang.String getStateFiles(int index);
/**
* repeated string stateFiles = 3;
* @param index The index of the value to return.
* @return The bytes of the stateFiles at the given index.
*/
com.google.protobuf.ByteString
getStateFilesBytes(int index);
/**
* .luceneserver.SnapshotId snapshotId = 4;
* @return Whether the snapshotId field is set.
*/
boolean hasSnapshotId();
/**
* .luceneserver.SnapshotId snapshotId = 4;
* @return The snapshotId.
*/
com.yelp.nrtsearch.server.grpc.SnapshotId getSnapshotId();
/**
* .luceneserver.SnapshotId snapshotId = 4;
*/
com.yelp.nrtsearch.server.grpc.SnapshotIdOrBuilder getSnapshotIdOrBuilder();
}