default HealthRegistry |
HealthRegistry.register(AsyncHealthCheck asyncHealthCheck) |
|
HealthRegistry |
HealthRegistry.register(String id,
AsyncHealthCheck asyncHealthCheck) |
|
HealthRegistry |
HealthRegistry.register(String id,
org.eclipse.microprofile.health.HealthCheck healthCheck) |
Programmatic registration of a HealthCheck instances.
|
default HealthRegistry |
HealthRegistry.register(org.eclipse.microprofile.health.HealthCheck healthCheck) |
Programmatic registration of a HealthCheck intances with the id set to
to the health check class name.
|
default HealthRegistry |
HealthRegistry.remove(AsyncHealthCheck asyncHealthCheck) |
|
HealthRegistry |
HealthRegistry.remove(String id) |
Programmatic removal of a programmatically registered check
( HealthCheck or AsyncHealthCheck) instances.
|
default HealthRegistry |
HealthRegistry.remove(org.eclipse.microprofile.health.HealthCheck healthCheck) |
Programmatic removal of a programmatically registered HealthCheck instances with the id set to
the the health check class name.
|