grpc.control_client._CacheLimitsOrBuilder 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: controlclient.proto
package grpc.control_client;
public interface _CacheLimitsOrBuilder extends
// @@protoc_insertion_point(interface_extends:control_client._CacheLimits)
com.google.protobuf.MessageOrBuilder {
/**
*
* The amount of transactions per second that can be exercised
*
*
* uint32 max_traffic_rate = 1;
* @return The maxTrafficRate.
*/
int getMaxTrafficRate();
/**
*
* The amount of traffic per second that can be exercised in KiB
*
*
* uint32 max_throughput_kbps = 2;
* @return The maxThroughputKbps.
*/
int getMaxThroughputKbps();
/**
*
* The maximum size of a single item in KiB
*
*
* uint32 max_item_size_kb = 3;
* @return The maxItemSizeKb.
*/
int getMaxItemSizeKb();
/**
*
* The maximum TTL allowed for a single item, in seconds
*
*
* uint64 max_ttl_seconds = 4;
* @return The maxTtlSeconds.
*/
long getMaxTtlSeconds();
}