Uses of Interface
ratpack.core.health.HealthCheck
-
Packages that use HealthCheck 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.hikari Provides integration with HikariCP library. -
-
Uses of HealthCheck in ratpack.core.health
Methods in ratpack.core.health that return HealthCheck Modifier and Type Method Description static HealthCheck
HealthCheck. of(String name, Function<? super Registry,? extends Promise<HealthCheck.Result>> func)
Convenience factory for health check implementations.Method parameters in ratpack.core.health with type arguments of type HealthCheck Modifier and Type Method Description static Promise<HealthCheckResults>
HealthCheck. checkAll(Registry registry, Iterable<? extends HealthCheck> healthChecks)
Execute health checks.static Promise<HealthCheckResults>
HealthCheck. checkAll(Registry registry, Throttle throttle, Iterable<? extends HealthCheck> healthChecks)
Execute health checks. -
Uses of HealthCheck in ratpack.hikari
Classes in ratpack.hikari that implement HealthCheck Modifier and Type Class Description class
HikariHealthCheck
Reports on the health of HikariCP JDBC connection pool.
-