grpc.cache_client._DictionaryDeleteRequestOrBuilder 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 _DictionaryDeleteRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:cache_client._DictionaryDeleteRequest)
com.google.protobuf.MessageOrBuilder {
/**
* bytes dictionary_name = 1;
* @return The dictionaryName.
*/
com.google.protobuf.ByteString getDictionaryName();
/**
* .cache_client._DictionaryDeleteRequest.Some some = 2;
* @return Whether the some field is set.
*/
boolean hasSome();
/**
* .cache_client._DictionaryDeleteRequest.Some some = 2;
* @return The some.
*/
grpc.cache_client._DictionaryDeleteRequest.Some getSome();
/**
* .cache_client._DictionaryDeleteRequest.Some some = 2;
*/
grpc.cache_client._DictionaryDeleteRequest.SomeOrBuilder getSomeOrBuilder();
/**
* .cache_client._DictionaryDeleteRequest.All all = 3;
* @return Whether the all field is set.
*/
boolean hasAll();
/**
* .cache_client._DictionaryDeleteRequest.All all = 3;
* @return The all.
*/
grpc.cache_client._DictionaryDeleteRequest.All getAll();
/**
* .cache_client._DictionaryDeleteRequest.All all = 3;
*/
grpc.cache_client._DictionaryDeleteRequest.AllOrBuilder getAllOrBuilder();
grpc.cache_client._DictionaryDeleteRequest.DeleteCase getDeleteCase();
}