| Modifier and Type | Method and Description |
|---|---|
default HealthRegistry |
HealthRegistry.register(AsyncHealthCheck asyncHealthCheck)
Asynchronous variant of
register(HealthCheck). |
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. |
HealthRegistry |
HealthRegistry.register(String id,
AsyncHealthCheck asyncHealthCheck)
Asynchronous variant of the
register(String, HealthCheck). |
HealthRegistry |
HealthRegistry.register(String id,
org.eclipse.microprofile.health.HealthCheck healthCheck)
Programmatic registration of a
HealthCheck instances. |
default HealthRegistry |
HealthRegistry.remove(AsyncHealthCheck asyncHealthCheck)
Asynchronous variant of
remove(HealthCheck). |
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. |
HealthRegistry |
HealthRegistry.remove(String id)
Programmatic removal of a programmatically registered check
(
HealthCheck or AsyncHealthCheck) instances. |
Copyright © 2018–2022. All rights reserved.