Package org.guvnor.ala.pipeline.events
Interface PipelineEventListener
-
public interface PipelineEventListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidafterPipelineExecution(AfterPipelineExecutionEvent apee)voidafterStageExecution(AfterStageExecutionEvent asee)voidbeforePipelineExecution(BeforePipelineExecutionEvent bpee)voidbeforeStageExecution(BeforeStageExecutionEvent bsee)voidonPipelineError(OnErrorPipelineExecutionEvent oepee)voidonStageError(OnErrorStageExecutionEvent oesee)
-
-
-
Method Detail
-
beforePipelineExecution
void beforePipelineExecution(BeforePipelineExecutionEvent bpee)
-
afterPipelineExecution
void afterPipelineExecution(AfterPipelineExecutionEvent apee)
-
beforeStageExecution
void beforeStageExecution(BeforeStageExecutionEvent bsee)
-
onStageError
void onStageError(OnErrorStageExecutionEvent oesee)
-
afterStageExecution
void afterStageExecution(AfterStageExecutionEvent asee)
-
onPipelineError
void onPipelineError(OnErrorPipelineExecutionEvent oepee)
-
-