Interface HealthCheckExecutor
-
@Deprecated @ProviderType public interface HealthCheckExecutor
Deprecated.Executes health checks registered as OSGi services and implementing the interfaceHealthCheck
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.util.List<HealthCheckExecutionResult>
execute(java.lang.String... tags)
Deprecated.use execute(HealthCheckFilter.Options)java.util.List<HealthCheckExecutionResult>
execute(HealthCheckExecutionOptions options, java.lang.String... tags)
Deprecated.use execute(HealthCheckFilter.Options, HealthCheckExecutionOptions)java.util.List<HealthCheckExecutionResult>
execute(HealthCheckSelector selector)
Deprecated.Executes all health checks matching the supplied filter options.java.util.List<HealthCheckExecutionResult>
execute(HealthCheckSelector selector, HealthCheckExecutionOptions options)
Deprecated.Executes all health checks with the supplied filter options.
-
-
-
Method Detail
-
execute
java.util.List<HealthCheckExecutionResult> execute(HealthCheckSelector selector)
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
java.util.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 java.util.List<HealthCheckExecutionResult> execute(java.lang.String... tags)
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 java.util.List<HealthCheckExecutionResult> execute(HealthCheckExecutionOptions options, java.lang.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.
-
-