Interface HealthCheckExecutor
Deprecated.
Executes health checks registered as OSGi services and
implementing the interface
HealthCheck.-
Method Summary
Modifier and TypeMethodDescriptionDeprecated.use execute(HealthCheckFilter.Options)execute(HealthCheckExecutionOptions options, String... tags) Deprecated.use execute(HealthCheckFilter.Options, HealthCheckExecutionOptions)execute(HealthCheckSelector selector) Deprecated.Executes all health checks matching the supplied filter options.execute(HealthCheckSelector selector, HealthCheckExecutionOptions options) Deprecated.Executes all health checks with the supplied filter options.
-
Method Details
-
execute
Deprecated.Executes all health checks matching the supplied filter options. If no options are supplied, all health checks are executed.- Parameters:
selector- filter selector- Returns:
- List of results. The list might be empty.
-
execute
List<HealthCheckExecutionResult> execute(HealthCheckSelector selector, HealthCheckExecutionOptions options) Deprecated.Executes all health checks with the supplied filter options. If no options are supplied, all health checks are executed.- Parameters:
selector- filter selectoroptions- options for controlling execution behavior- Returns:
- List of results. The list might be empty.
-
execute
Deprecated.use execute(HealthCheckFilter.Options)Executes all health checks with the supplied list of tags. If no tags are supplied, all health checks are executed.- Returns:
- List of results. The list might be empty.
-
execute
@Deprecated List<HealthCheckExecutionResult> execute(HealthCheckExecutionOptions options, String... tags) Deprecated.use execute(HealthCheckFilter.Options, HealthCheckExecutionOptions)Executes all health checks with the supplied list of tags. If no tags are supplied, all health checks are executed.- Parameters:
options- options for controlling execution behaviortags- tags to be executed- Returns:
- List of results. The list might be empty.
-