Interface StepInterruptionPolicy
- All Known Implementing Classes:
ThreadStepInterruptionPolicy
public interface StepInterruptionPolicy
Strategy interface for an interruption policy. This policy allows
Step
implementations to check if a job has been interrupted.- Author:
- Lucas Ward
-
Method Summary
Modifier and TypeMethodDescriptionvoid
checkInterrupted
(StepExecution stepExecution) Has the job been interrupted? If so then throw aJobInterruptedException
.
-
Method Details
-
checkInterrupted
Has the job been interrupted? If so then throw aJobInterruptedException
.- Parameters:
stepExecution
- the current context of the running step.- Throws:
JobInterruptedException
- when the job has been interrupted.
-