Uses of Interface
org.apache.camel.health.HealthCheck
-
Packages that use HealthCheck Package Description org.apache.camel.health Camel Health Check support -
-
Uses of HealthCheck in org.apache.camel.health
Methods in org.apache.camel.health with type parameters of type HealthCheck Modifier and Type Method Description static <T extends HealthCheck>
THealthCheckHelper. getHealthCheck(CamelContext context, String id, Class<T> type)Gets theHealthCheckby the given id (will resolve from classpath if necessary)Methods in org.apache.camel.health that return HealthCheck Modifier and Type Method Description HealthCheckHealthCheck.Result. getCheck()TheHealthCheckassociated to this response.HealthCheckHealthCheckAware. getHealthCheck()Gets theHealthCheckstatic HealthCheckHealthCheckHelper. getHealthCheck(CamelContext context, String id)Gets theHealthCheckby the given id (will resolve from classpath if necessary)HealthCheckHealthCheckResolver. resolveHealthCheck(String id)Resolves the givenHealthCheck.Methods in org.apache.camel.health that return types with arguments of type HealthCheck Modifier and Type Method Description default Optional<HealthCheck>HealthCheckRegistry. getCheck(String id)Returns the check identified by the givenidif available.default Optional<HealthCheck>HealthCheckRepository. getCheck(String id)Returns the check identified by the givenidif available.Stream<HealthCheck>HasHealthChecks. stream()Returns a sequentialStreamwith the knownHealthCheckas its source.Stream<HealthCheck>HealthCheckRegistry. stream()Returns a sequentialStreamwith the knownHealthCheckas its source.Methods in org.apache.camel.health with parameters of type HealthCheck Modifier and Type Method Description voidWritableHealthCheckRepository. addHealthCheck(HealthCheck healthCheck)Adds aHealthCheckto the repository.booleanHealthCheckRegistry. isExcluded(HealthCheck healthCheck)Whether the given health check has been excludedstatic HealthCheckResultBuilderHealthCheckResultBuilder. on(HealthCheck check)voidHealthCheckResultStrategy. processResult(HealthCheck check, Map<String,Object> options, HealthCheckResultBuilder builder)Processes and allows manipulation of the result from theHealthCheckinvocation.voidWritableHealthCheckRepository. removeHealthCheck(HealthCheck healthCheck)Removes aHealthCheckfrom the repository.voidHealthCheckAware. setHealthCheck(HealthCheck healthCheck)Injects theHealthCheckMethod parameters in org.apache.camel.health with type arguments of type HealthCheck Modifier and Type Method Description static Collection<HealthCheck.Result>HealthCheckHelper. invoke(CamelContext camelContext, Function<HealthCheck,Map<String,Object>> optionsSupplier)Invokes the checks and returns a collection of results.static Collection<HealthCheck.Result>HealthCheckHelper. invoke(CamelContext camelContext, Function<HealthCheck,Map<String,Object>> optionsSupplier, Predicate<HealthCheck> filter, String exposureLevel)Invokes the checks and returns a collection of results.static Collection<HealthCheck.Result>HealthCheckHelper. invoke(CamelContext camelContext, Function<HealthCheck,Map<String,Object>> optionsSupplier, Predicate<HealthCheck> filter, String exposureLevel)Invokes the checks and returns a collection of results.static Collection<HealthCheck.Result>HealthCheckHelper. invoke(CamelContext camelContext, Predicate<HealthCheck> filter)Invokes the checks and returns a collection of results.
-