Uses of Interface
ratpack.exec.Throttle
-
Packages that use Throttle Package Description ratpack.core.health Health checks report on the status of key components in the system and are generally used for monitoring and reporting.ratpack.exec The execution management. -
-
Uses of Throttle in ratpack.core.health
Methods in ratpack.core.health that return Throttle Modifier and Type Method Description Throttle
HealthCheckHandler. getThrottle()
The throttle for executing health checks.Methods in ratpack.core.health with parameters of type Throttle Modifier and Type Method Description static Promise<HealthCheckResults>
HealthCheck. checkAll(Registry registry, Throttle throttle, Iterable<? extends HealthCheck> healthChecks)
Execute health checks.Constructors in ratpack.core.health with parameters of type Throttle Constructor Description HealthCheckHandler(String pathTokenName, Throttle throttle)
Constructor.HealthCheckHandler(Throttle throttle)
Uses theHealthCheckHandler.DEFAULT_NAME_TOKEN
and the given throttle. -
Uses of Throttle in ratpack.exec
Methods in ratpack.exec that return Throttle Modifier and Type Method Description static Throttle
Throttle. ofSize(int size)
Create a new throttle of the given size.static Throttle
Throttle. unlimited()
Create a new throttle that does not limit concurrency.Methods in ratpack.exec with parameters of type Throttle Modifier and Type Method Description default Promise<T>
Promise. throttled(Throttle throttle)
Throttlesthis
promise, using the giventhrottle
.
-