Uses of Class
dev.failsafe.RateLimiterConfig
-
Packages that use RateLimiterConfig Package Description dev.failsafe APIs for performing failsafe executions.dev.failsafe.internal -
-
Uses of RateLimiterConfig in dev.failsafe
Methods in dev.failsafe that return RateLimiterConfig Modifier and Type Method Description RateLimiterConfig<R>
RateLimiter. getConfig()
Returns theRateLimiterConfig
that the RateLimiter was built with.Methods in dev.failsafe with parameters of type RateLimiterConfig Modifier and Type Method Description static <R> RateLimiterBuilder<R>
RateLimiter. builder(RateLimiterConfig<R> config)
Creates a new RateLimiterBuilder that will be based on theconfig
.Constructors in dev.failsafe with parameters of type RateLimiterConfig Constructor Description RateLimiterBuilder(RateLimiterConfig<R> config)
RateLimiterConfig(RateLimiterConfig<R> config)
-
Uses of RateLimiterConfig in dev.failsafe.internal
Fields in dev.failsafe.internal declared as RateLimiterConfig Modifier and Type Field Description private RateLimiterConfig<R>
RateLimiterImpl. config
Methods in dev.failsafe.internal that return RateLimiterConfig Modifier and Type Method Description RateLimiterConfig<R>
RateLimiterImpl. getConfig()
Constructors in dev.failsafe.internal with parameters of type RateLimiterConfig Constructor Description BurstyRateLimiterStats(RateLimiterConfig<?> config, RateLimiterStats.Stopwatch stopwatch)
RateLimiterImpl(RateLimiterConfig<R> config)
RateLimiterImpl(RateLimiterConfig<R> config, RateLimiterStats.Stopwatch stopwatch)
SmoothRateLimiterStats(RateLimiterConfig<?> config, RateLimiterStats.Stopwatch stopwatch)
-