Uses of Class
com.google.common.util.concurrent.RateLimiter
-
Packages that use RateLimiter Package Description com.google.common.util.concurrent Concurrency utilities. -
-
Uses of RateLimiter in com.google.common.util.concurrent
Methods in com.google.common.util.concurrent that return RateLimiter Modifier and Type Method Description static RateLimiter
RateLimiter. create(double permitsPerSecond)
Creates aRateLimiter
with the specified stable throughput, given as "permits per second" (commonly referred to as QPS, queries per second).static RateLimiter
RateLimiter. create(double permitsPerSecond, long warmupPeriod, java.util.concurrent.TimeUnit unit)
Creates aRateLimiter
with the specified stable throughput, given as "permits per second" (commonly referred to as QPS, queries per second), and a warmup period, during which theRateLimiter
smoothly ramps up its rate, until it reaches its maximum rate at the end of the period (as long as there are enough requests to saturate it).
-