grpc.cache_client._SetIfRequestOrBuilder 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 _SetIfRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:cache_client._SetIfRequest)
com.google.protobuf.MessageOrBuilder {
/**
* bytes cache_key = 1;
* @return The cacheKey.
*/
com.google.protobuf.ByteString getCacheKey();
/**
* bytes cache_body = 2;
* @return The cacheBody.
*/
com.google.protobuf.ByteString getCacheBody();
/**
* uint64 ttl_milliseconds = 3;
* @return The ttlMilliseconds.
*/
long getTtlMilliseconds();
/**
* .common.Present present = 4;
* @return Whether the present field is set.
*/
boolean hasPresent();
/**
* .common.Present present = 4;
* @return The present.
*/
grpc.common.Present getPresent();
/**
* .common.Present present = 4;
*/
grpc.common.PresentOrBuilder getPresentOrBuilder();
/**
* .common.PresentAndNotEqual present_and_not_equal = 5;
* @return Whether the presentAndNotEqual field is set.
*/
boolean hasPresentAndNotEqual();
/**
* .common.PresentAndNotEqual present_and_not_equal = 5;
* @return The presentAndNotEqual.
*/
grpc.common.PresentAndNotEqual getPresentAndNotEqual();
/**
* .common.PresentAndNotEqual present_and_not_equal = 5;
*/
grpc.common.PresentAndNotEqualOrBuilder getPresentAndNotEqualOrBuilder();
/**
* .common.Absent absent = 6;
* @return Whether the absent field is set.
*/
boolean hasAbsent();
/**
* .common.Absent absent = 6;
* @return The absent.
*/
grpc.common.Absent getAbsent();
/**
* .common.Absent absent = 6;
*/
grpc.common.AbsentOrBuilder getAbsentOrBuilder();
/**
* .common.Equal equal = 7;
* @return Whether the equal field is set.
*/
boolean hasEqual();
/**
* .common.Equal equal = 7;
* @return The equal.
*/
grpc.common.Equal getEqual();
/**
* .common.Equal equal = 7;
*/
grpc.common.EqualOrBuilder getEqualOrBuilder();
/**
* .common.AbsentOrEqual absent_or_equal = 8;
* @return Whether the absentOrEqual field is set.
*/
boolean hasAbsentOrEqual();
/**
* .common.AbsentOrEqual absent_or_equal = 8;
* @return The absentOrEqual.
*/
grpc.common.AbsentOrEqual getAbsentOrEqual();
/**
* .common.AbsentOrEqual absent_or_equal = 8;
*/
grpc.common.AbsentOrEqualOrBuilder getAbsentOrEqualOrBuilder();
/**
* .common.NotEqual not_equal = 9;
* @return Whether the notEqual field is set.
*/
boolean hasNotEqual();
/**
* .common.NotEqual not_equal = 9;
* @return The notEqual.
*/
grpc.common.NotEqual getNotEqual();
/**
* .common.NotEqual not_equal = 9;
*/
grpc.common.NotEqualOrBuilder getNotEqualOrBuilder();
grpc.cache_client._SetIfRequest.ConditionCase getConditionCase();
}