Package com.mux.spaces.api.proto.signals
Interface Signals.LimitsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Signals.Limits
,Signals.Limits.Builder
- Enclosing class:
- Signals
public static interface Signals.LimitsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getCustomEventsPerSecond()
uint32 custom_events_per_second = 2;
int
getDefaultTrackLimit()
this can/probably will expand into having overrides per source-type here as well but holding off on that for now until we get some enums up in hereint
getSecondsPerSetDisplayName()
per-connection rate limit.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDefaultTrackLimit
int getDefaultTrackLimit()
this can/probably will expand into having overrides per source-type here as well but holding off on that for now until we get some enums up in here
uint32 default_track_limit = 1;
- Returns:
- The defaultTrackLimit.
-
getCustomEventsPerSecond
int getCustomEventsPerSecond()
uint32 custom_events_per_second = 2;
- Returns:
- The customEventsPerSecond.
-
getSecondsPerSetDisplayName
int getSecondsPerSetDisplayName()
per-connection rate limit. This is upside down because our RPS < 1.
uint32 seconds_per_set_display_name = 3;
- Returns:
- The secondsPerSetDisplayName.
-
-