Package org.apache.hop.core.listeners
Class SubComponentExecutionAdapter
- java.lang.Object
-
- org.apache.hop.core.listeners.SubComponentExecutionAdapter
-
- All Implemented Interfaces:
ISubComponentExecutionListener
public class SubComponentExecutionAdapter extends Object implements ISubComponentExecutionListener
-
-
Constructor Summary
Constructors Constructor Description SubComponentExecutionAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterJobExecution(IWorkflowEngine<WorkflowMeta> workflow)This method is called right after a workflow was executed in a parent workflow or pipeline (Workflow workflow-entry, Workflow Executor transform).voidafterPipelineExecution(IPipelineEngine<PipelineMeta> pipeline)This method is called right after a sub-pipeline, mapping, single threader template, ...voidbeforeJobExecution(IWorkflowEngine<WorkflowMeta> workflow)This method is called right before a workflow is to be executed in a parent workflow or pipeline (Workflow workflow-entry, Workflow Executor transform).voidbeforePipelineExecution(IPipelineEngine<PipelineMeta> pipeline)This method is called right before a sub-pipeline, mapping, single threader template, ...
-
-
-
Method Detail
-
beforePipelineExecution
public void beforePipelineExecution(IPipelineEngine<PipelineMeta> pipeline) throws HopException
Description copied from interface:ISubComponentExecutionListenerThis method is called right before a sub-pipeline, mapping, single threader template, ... is to be executed in a parent workflow or pipeline.- Specified by:
beforePipelineExecutionin interfaceISubComponentExecutionListener- Parameters:
pipeline- The pipeline that is about to be executed.- Throws:
HopException- In case something goes wrong
-
afterPipelineExecution
public void afterPipelineExecution(IPipelineEngine<PipelineMeta> pipeline) throws HopException
Description copied from interface:ISubComponentExecutionListenerThis method is called right after a sub-pipeline, mapping, single threader template, ... was executed in a parent workflow or pipeline.- Specified by:
afterPipelineExecutionin interfaceISubComponentExecutionListener- Parameters:
pipeline- The pipeline that was just executed.- Throws:
HopException- In case something goes wrong
-
beforeJobExecution
public void beforeJobExecution(IWorkflowEngine<WorkflowMeta> workflow) throws HopException
Description copied from interface:ISubComponentExecutionListenerThis method is called right before a workflow is to be executed in a parent workflow or pipeline (Workflow workflow-entry, Workflow Executor transform).- Specified by:
beforeJobExecutionin interfaceISubComponentExecutionListener- Parameters:
workflow- The workflow that is about to be executed.- Throws:
HopException- In case something goes wrong
-
afterJobExecution
public void afterJobExecution(IWorkflowEngine<WorkflowMeta> workflow) throws HopException
Description copied from interface:ISubComponentExecutionListenerThis method is called right after a workflow was executed in a parent workflow or pipeline (Workflow workflow-entry, Workflow Executor transform).- Specified by:
afterJobExecutionin interfaceISubComponentExecutionListener- Parameters:
workflow- The workflow that was executed.- Throws:
HopException- In case something goes wrong
-
-