Package com.redwood.scheduler.api.job
Interface JobForecastContext
-
- All Known Implementing Classes:
JobForecaster
public interface JobForecastContext
Flags to direct forecasting. Status after forecasting.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<Throwable>
getExceptions()
Get the exceptions that occurred during forecasting.boolean
includeExistingJobs()
Are existing jobs included in the result or only return the forecasts when forecasting the jobs in a job group.
-
-
-
Method Detail
-
includeExistingJobs
boolean includeExistingJobs()
Are existing jobs included in the result or only return the forecasts when forecasting the jobs in a job group. Does not apply to forecasting the child jobs of a job.- Returns:
- the value.
-
getExceptions
Collection<Throwable> getExceptions()
Get the exceptions that occurred during forecasting.- Returns:
- exceptions that occurred during forecasting.
-
-