Package io.smallrye.health.registry
Class HealthRegistryImpl
- java.lang.Object
-
- io.smallrye.health.registry.HealthRegistryImpl
-
- All Implemented Interfaces:
HealthRegistry
public class HealthRegistryImpl extends Object implements HealthRegistry
-
-
Constructor Summary
Constructors Constructor Description HealthRegistryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanchecksChanged()Collection<io.smallrye.mutiny.Uni<org.eclipse.microprofile.health.HealthCheckResponse>>getChecks(Map<String,Boolean> healthChecksConfigs)HealthRegistryregister(String id, AsyncHealthCheck asyncHealthCheck)HealthRegistryregister(String id, org.eclipse.microprofile.health.HealthCheck healthCheck)HealthRegistryremove(String id)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.smallrye.health.api.HealthRegistry
register, register, remove, remove
-
-
-
-
Method Detail
-
register
public HealthRegistry register(String id, org.eclipse.microprofile.health.HealthCheck healthCheck)
- Specified by:
registerin interfaceHealthRegistry
-
register
public HealthRegistry register(String id, AsyncHealthCheck asyncHealthCheck)
- Specified by:
registerin interfaceHealthRegistry
-
remove
public HealthRegistry remove(String id)
- Specified by:
removein interfaceHealthRegistry
-
getChecks
public Collection<io.smallrye.mutiny.Uni<org.eclipse.microprofile.health.HealthCheckResponse>> getChecks(Map<String,Boolean> healthChecksConfigs)
-
checksChanged
public boolean checksChanged()
-
-