Interface BlockableResume
public interface BlockableResume
Can be added to advertise the ability to mark pipeline components which prevent pipelines from being able to resume
 after restart or after pause.
 Pipelines which cannot resume will simply fail.
- 
Method Summary
Modifier and TypeMethodDescriptionbooleanReturn true if we prevent the abiity to resume.voidsetResumeBlocked(boolean isBlocked) Set resume on or off - may throw anIllegalArgumentExceptionif trying to illegally toggle. 
- 
Method Details
- 
isResumeBlocked
boolean isResumeBlocked()Return true if we prevent the abiity to resume. - 
setResumeBlocked
void setResumeBlocked(boolean isBlocked) Set resume on or off - may throw anIllegalArgumentExceptionif trying to illegally toggle. 
 -