com.yelp.nrtsearch.server.grpc.GlobalStateInfoOrBuilder 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 GlobalStateInfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:luceneserver.GlobalStateInfo)
com.google.protobuf.MessageOrBuilder {
/**
*
* State version generation
*
*
* int64 gen = 1;
* @return The gen.
*/
long getGen();
/**
*
* Global state for indices
*
*
* map<string, .luceneserver.IndexGlobalState> indices = 2;
*/
int getIndicesCount();
/**
*
* Global state for indices
*
*
* map<string, .luceneserver.IndexGlobalState> indices = 2;
*/
boolean containsIndices(
java.lang.String key);
/**
* Use {@link #getIndicesMap()} instead.
*/
@java.lang.Deprecated
java.util.Map
getIndices();
/**
*
* Global state for indices
*
*
* map<string, .luceneserver.IndexGlobalState> indices = 2;
*/
java.util.Map
getIndicesMap();
/**
*
* Global state for indices
*
*
* map<string, .luceneserver.IndexGlobalState> indices = 2;
*/
/* nullable */
com.yelp.nrtsearch.server.grpc.IndexGlobalState getIndicesOrDefault(
java.lang.String key,
/* nullable */
com.yelp.nrtsearch.server.grpc.IndexGlobalState defaultValue);
/**
*
* Global state for indices
*
*
* map<string, .luceneserver.IndexGlobalState> indices = 2;
*/
com.yelp.nrtsearch.server.grpc.IndexGlobalState getIndicesOrThrow(
java.lang.String key);
}