Package com.codahale.metrics.health
Class AsyncHealthCheckDecorator
java.lang.Object
com.codahale.metrics.health.HealthCheck
com.codahale.metrics.health.AsyncHealthCheckDecorator
- All Implemented Interfaces:
Runnable
A health check decorator to manage asynchronous executions.
-
Nested Class Summary
Nested classes/interfaces inherited from class com.codahale.metrics.health.HealthCheck
HealthCheck.Result, HealthCheck.ResultBuilder -
Method Summary
Modifier and TypeMethodDescriptionprotected HealthCheck.Resultcheck()Perform a check of the application component.voidrun()Methods inherited from class com.codahale.metrics.health.HealthCheck
clock, execute
-
Method Details
-
run
public void run() -
check
Description copied from class:HealthCheckPerform a check of the application component.- Specified by:
checkin classHealthCheck- Returns:
- if the component is healthy, a healthy
HealthCheck.Result; otherwise, an unhealthyHealthCheck.Resultwith a descriptive error message or exception - Throws:
Exception- if there is an unhandled error during the health check; this will result in a failed health check
-
getHealthCheck
-