grpc.control_client._TopicLimitsOrBuilder 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 _TopicLimitsOrBuilder extends
// @@protoc_insertion_point(interface_extends:control_client._TopicLimits)
com.google.protobuf.MessageOrBuilder {
/**
*
* The amount of messages that can be published per second
*
*
* uint32 max_publish_rate = 1;
* @return The maxPublishRate.
*/
int getMaxPublishRate();
/**
*
* The maximum amount of active subscriptions per cache
*
*
* uint32 max_subscription_count = 2;
* @return The maxSubscriptionCount.
*/
int getMaxSubscriptionCount();
/**
*
* The maximum size of a single publish message, in KiB
*
*
* uint32 max_publish_message_size_kb = 3;
* @return The maxPublishMessageSizeKb.
*/
int getMaxPublishMessageSizeKb();
}