Interface HealthCheckExecutor
-
- All Known Implementing Classes:
DefaultHealthCheckExecutor
public interface HealthCheckExecutorExecutes the givenHealthChecks and returns their unique results.- Since:
- 6.6.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<HealthCheckResult>performHealthChecks(Collection<HealthCheck> healthChecks, LifecyclePhase lifecyclePhase)Executes given health checks for the given phase of the Confluence lifecycle.
-
-
-
Method Detail
-
performHealthChecks
Set<HealthCheckResult> performHealthChecks(Collection<HealthCheck> healthChecks, LifecyclePhase lifecyclePhase)
Executes given health checks for the given phase of the Confluence lifecycle.- Parameters:
healthChecks- health checks to runlifecyclePhase- the current phase of the Confluence lifecycle- Returns:
- any results of the checks (not all checks will return results in all phases)
-
-