grpc.cache_client._DictionarySetRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-protos-jvm Show documentation
Show all versions of client-protos-jvm Show documentation
Kotlin protobuf protocols for the JVM that define the Momento gRPC wire format
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: cacheclient.proto
package grpc.cache_client;
public interface _DictionarySetRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:cache_client._DictionarySetRequest)
com.google.protobuf.MessageOrBuilder {
/**
* bytes dictionary_name = 1;
* @return The dictionaryName.
*/
com.google.protobuf.ByteString getDictionaryName();
/**
* repeated .cache_client._DictionaryFieldValuePair items = 2;
*/
java.util.List
getItemsList();
/**
* repeated .cache_client._DictionaryFieldValuePair items = 2;
*/
grpc.cache_client._DictionaryFieldValuePair getItems(int index);
/**
* repeated .cache_client._DictionaryFieldValuePair items = 2;
*/
int getItemsCount();
/**
* repeated .cache_client._DictionaryFieldValuePair items = 2;
*/
java.util.List extends grpc.cache_client._DictionaryFieldValuePairOrBuilder>
getItemsOrBuilderList();
/**
* repeated .cache_client._DictionaryFieldValuePair items = 2;
*/
grpc.cache_client._DictionaryFieldValuePairOrBuilder getItemsOrBuilder(
int index);
/**
* uint64 ttl_milliseconds = 3;
* @return The ttlMilliseconds.
*/
long getTtlMilliseconds();
/**
* bool refresh_ttl = 4;
* @return The refreshTtl.
*/
boolean getRefreshTtl();
}