grpc.cache_client._IncrementRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-protos Show documentation
Show all versions of client-protos Show documentation
Java protobuf protocols 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 _IncrementRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:cache_client._IncrementRequest)
com.google.protobuf.MessageOrBuilder {
/**
* bytes cache_key = 1;
* @return The cacheKey.
*/
com.google.protobuf.ByteString getCacheKey();
/**
*
* Amount to add to the stored value.
* If this key doesn't currently exist, it's created with this value (encoded as a base 10 string)
*
*
* int64 amount = 2;
* @return The amount.
*/
long getAmount();
/**
* uint64 ttl_milliseconds = 3;
* @return The ttlMilliseconds.
*/
long getTtlMilliseconds();
}