Uses of Interface
dev.failsafe.RateLimiter
-
Packages that use RateLimiter Package Description dev.failsafe APIs for performing failsafe executions.dev.failsafe.internal -
-
Uses of RateLimiter in dev.failsafe
Fields in dev.failsafe declared as RateLimiter Modifier and Type Field Description private RateLimiter<?>
RateLimitExceededException. rateLimiter
Methods in dev.failsafe that return RateLimiter Modifier and Type Method Description RateLimiter<R>
RateLimiterBuilder. build()
Builds a newRateLimiter
using the builder's configuration.RateLimiter<?>
RateLimitExceededException. getRateLimiter()
Returns theRateLimiter
that caused the exception.Constructors in dev.failsafe with parameters of type RateLimiter Constructor Description RateLimitExceededException(RateLimiter<?> rateLimiter)
-
Uses of RateLimiter in dev.failsafe.internal
Classes in dev.failsafe.internal that implement RateLimiter Modifier and Type Class Description class
RateLimiterImpl<R>
A RateLimiter implementation that supports smooth and bursty rate limiting.
-