Uses of Interface
org.apache.hop.workflow.engine.IWorkflowEngine
-
-
Uses of IWorkflowEngine in org.apache.hop.core.listeners
Methods in org.apache.hop.core.listeners with parameters of type IWorkflowEngine Modifier and Type Method Description voidISubComponentExecutionListener. afterJobExecution(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).voidSubComponentExecutionAdapter. afterJobExecution(IWorkflowEngine<WorkflowMeta> workflow)voidISubComponentExecutionListener. beforeJobExecution(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).voidSubComponentExecutionAdapter. beforeJobExecution(IWorkflowEngine<WorkflowMeta> workflow) -
Uses of IWorkflowEngine in org.apache.hop.core.util
Methods in org.apache.hop.core.util with parameters of type IWorkflowEngine Modifier and Type Method Description IVariablesCurrentDirectoryResolver. resolveCurrentDirectory(IVariables parentVariables, IWorkflowEngine<WorkflowMeta> workflow, String filename) -
Uses of IWorkflowEngine in org.apache.hop.execution
Methods in org.apache.hop.execution with parameters of type IWorkflowEngine Modifier and Type Method Description static ExecutionDataBuilderExecutionDataBuilder. afterActionExecution(IWorkflowEngine<WorkflowMeta> workflow, ActionMeta actionMeta, IAction action, Result result, IVariables referenceVariables, IVariables beforeVariables)We log to a new file after every executed action.static ExecutionDataBuilderExecutionDataBuilder. beforeActionExecution(IWorkflowEngine<WorkflowMeta> workflow, ActionMeta actionMeta, IAction action, IVariables referenceVariables)static ExecutionBuilderExecutionBuilder. fromAction(IWorkflowEngine<WorkflowMeta> workflow, ActionMeta actionMeta, IAction action, Date startDate)static ExecutionBuilderExecutionBuilder. fromExecutor(IWorkflowEngine<WorkflowMeta> workflow)static ExecutionStateBuilderExecutionStateBuilder. fromExecutor(IWorkflowEngine<WorkflowMeta> workflow, Integer lastLogLineNr) -
Uses of IWorkflowEngine in org.apache.hop.pipeline
Methods in org.apache.hop.pipeline that return IWorkflowEngine Modifier and Type Method Description IWorkflowEngine<WorkflowMeta>Pipeline. getActiveSubWorkflow(String subWorkflowName)IWorkflowEngine<WorkflowMeta>Pipeline. getParentWorkflow()Gets the parent workflow, or null if there is no parent.Methods in org.apache.hop.pipeline that return types with arguments of type IWorkflowEngine Modifier and Type Method Description Map<String,IWorkflowEngine<WorkflowMeta>>Pipeline. getActiveSubWorkflows()Gets the active sub-workflows.Methods in org.apache.hop.pipeline with parameters of type IWorkflowEngine Modifier and Type Method Description voidPipeline. addActiveSubWorkflow(String subWorkflowName, IWorkflowEngine<WorkflowMeta> subWorkflow)voidPipeline. setParentWorkflow(IWorkflowEngine<WorkflowMeta> parentWorkflow)Sets the parent workflow for the pipeline.Method parameters in org.apache.hop.pipeline with type arguments of type IWorkflowEngine Modifier and Type Method Description voidPipeline. setActiveSubWorkflows(Map<String,IWorkflowEngine<WorkflowMeta>> activeSubWorkflows) -
Uses of IWorkflowEngine in org.apache.hop.pipeline.engine
Methods in org.apache.hop.pipeline.engine that return IWorkflowEngine Modifier and Type Method Description IWorkflowEngine<WorkflowMeta>IPipelineEngine. getActiveSubWorkflow(String subWorkflowName)Get the active sub-workflow with the given nameIWorkflowEngine<WorkflowMeta>IPipelineEngine. getParentWorkflow()Determine the workflow engine which is executing this pipeline engine.Methods in org.apache.hop.pipeline.engine with parameters of type IWorkflowEngine Modifier and Type Method Description voidIPipelineEngine. addActiveSubWorkflow(String subWorkflowName, IWorkflowEngine<WorkflowMeta> subWorkflow)Add an active sub-workflow to allow drill-down in the GUIvoidIPipelineEngine. setParentWorkflow(IWorkflowEngine<WorkflowMeta> parentWorkflow)Inform the pipeline that it's being executed as part of a workflow -
Uses of IWorkflowEngine in org.apache.hop.pipeline.engines.remote
Fields in org.apache.hop.pipeline.engines.remote declared as IWorkflowEngine Modifier and Type Field Description protected IWorkflowEngine<WorkflowMeta>RemotePipelineEngine. parentWorkflowFields in org.apache.hop.pipeline.engines.remote with type parameters of type IWorkflowEngine Modifier and Type Field Description protected Map<String,IWorkflowEngine<WorkflowMeta>>RemotePipelineEngine. activeSubWorkflowsThe active subjobsMethods in org.apache.hop.pipeline.engines.remote that return IWorkflowEngine Modifier and Type Method Description IWorkflowEngine<WorkflowMeta>RemotePipelineEngine. getActiveSubWorkflow(String subWorkflowName)IWorkflowEngine<WorkflowMeta>RemotePipelineEngine. getParentWorkflow()Gets parentWorkflowMethods in org.apache.hop.pipeline.engines.remote that return types with arguments of type IWorkflowEngine Modifier and Type Method Description Map<String,IWorkflowEngine<WorkflowMeta>>RemotePipelineEngine. getActiveSubWorkflows()Gets activeSubWorkflowsMethods in org.apache.hop.pipeline.engines.remote with parameters of type IWorkflowEngine Modifier and Type Method Description voidRemotePipelineEngine. addActiveSubWorkflow(String subWorkflowName, IWorkflowEngine<WorkflowMeta> subWorkflow)voidRemotePipelineEngine. setParentWorkflow(IWorkflowEngine<WorkflowMeta> parentWorkflow)Method parameters in org.apache.hop.pipeline.engines.remote with type arguments of type IWorkflowEngine Modifier and Type Method Description voidRemotePipelineEngine. setActiveSubWorkflows(Map<String,IWorkflowEngine<WorkflowMeta>> activeSubWorkflows) -
Uses of IWorkflowEngine in org.apache.hop.workflow
Classes in org.apache.hop.workflow that implement IWorkflowEngine Modifier and Type Class Description classWorkflowThis class executes a workflow as defined by a WorkflowMeta object.Fields in org.apache.hop.workflow declared as IWorkflowEngine Modifier and Type Field Description protected IWorkflowEngine<WorkflowMeta>Workflow. parentWorkflowThe workflow that's launching this (sub-) workflow.IWorkflowEngine<WorkflowMeta>WorkflowExecutionExtension. workflowFields in org.apache.hop.workflow with type parameters of type IWorkflowEngine Modifier and Type Field Description protected List<IExecutionFinishedListener<IWorkflowEngine<WorkflowMeta>>>Workflow. workflowFinishedListenersprotected List<IExecutionStartedListener<IWorkflowEngine<WorkflowMeta>>>Workflow. workflowStartedListenersMethods in org.apache.hop.workflow that return IWorkflowEngine Modifier and Type Method Description IWorkflowEngine<WorkflowMeta>Workflow. getParentWorkflow()Gets the parent workflow.Methods in org.apache.hop.workflow that return types with arguments of type IWorkflowEngine Modifier and Type Method Description List<IExecutionFinishedListener<IWorkflowEngine<WorkflowMeta>>>Workflow. getWorkflowFinishedListeners()Gets workflowFinishedListenersList<IExecutionStartedListener<IWorkflowEngine<WorkflowMeta>>>Workflow. getWorkflowStartedListeners()Gets workflowStartedListenersMethods in org.apache.hop.workflow with parameters of type IWorkflowEngine Modifier and Type Method Description voidIActionListener. afterExecution(IWorkflowEngine<T> workflow, ActionMeta actionMeta, IAction action, Result result)voidIActionListener. beforeExecution(IWorkflowEngine<T> workflow, ActionMeta actionMeta, IAction action)voidWorkflow. setParentWorkflow(IWorkflowEngine<WorkflowMeta> parentWorkflow)Sets the parent workflow.voidDelegationAdapter. workflowDelegationStarted(IWorkflowEngine<WorkflowMeta> delegatedWorkflow, WorkflowExecutionConfiguration workflowExecutionConfiguration)voidIDelegationListener. workflowDelegationStarted(IWorkflowEngine<WorkflowMeta> delegatedWorkflow, WorkflowExecutionConfiguration workflowExecutionConfiguration)Method parameters in org.apache.hop.workflow with type arguments of type IWorkflowEngine Modifier and Type Method Description voidWorkflow. addWorkflowFinishedListener(IExecutionFinishedListener<IWorkflowEngine<WorkflowMeta>> finishedListener)voidWorkflow. addWorkflowStartedListener(IExecutionStartedListener<IWorkflowEngine<WorkflowMeta>> finishedListener)voidWorkflow. setWorkflowFinishedListeners(List<IExecutionFinishedListener<IWorkflowEngine<WorkflowMeta>>> workflowFinishedListeners)voidWorkflow. setWorkflowStartedListeners(List<IExecutionStartedListener<IWorkflowEngine<WorkflowMeta>>> workflowStartedListeners)Constructors in org.apache.hop.workflow with parameters of type IWorkflowEngine Constructor Description WorkflowExecutionExtension(IWorkflowEngine<WorkflowMeta> workflow, Result result, ActionMeta actionMeta, boolean executeAction) -
Uses of IWorkflowEngine in org.apache.hop.workflow.action
Fields in org.apache.hop.workflow.action declared as IWorkflowEngine Modifier and Type Field Description protected IWorkflowEngine<WorkflowMeta>ActionBase. parentWorkflowThe parent workflowMethods in org.apache.hop.workflow.action that return IWorkflowEngine Modifier and Type Method Description IWorkflowEngine<WorkflowMeta>ActionBase. getParentWorkflow()Gets the parent workflow.IWorkflowEngine<WorkflowMeta>IAction. getParentWorkflow()Gets the parent workflow.Methods in org.apache.hop.workflow.action with parameters of type IWorkflowEngine Modifier and Type Method Description voidActionBase. setParentWorkflow(IWorkflowEngine<WorkflowMeta> parentWorkflow)Sets the parent workflow.voidIAction. setParentWorkflow(IWorkflowEngine<WorkflowMeta> workflow)Sets the parent workflow. -
Uses of IWorkflowEngine in org.apache.hop.workflow.engine
Methods in org.apache.hop.workflow.engine that return IWorkflowEngine Modifier and Type Method Description static <T extends WorkflowMeta>
IWorkflowEngine<T>WorkflowEngineFactory. createWorkflowEngine(IVariables variables, String runConfigurationName, IHopMetadataProvider metadataProvider, T workflowMeta, ILoggingObject parentLogging)IWorkflowEngine<WorkflowMeta>IWorkflowEngine. getParentWorkflow()Methods in org.apache.hop.workflow.engine that return types with arguments of type IWorkflowEngine Modifier and Type Method Description List<IExecutionFinishedListener<IWorkflowEngine<T>>>IWorkflowEngine. getWorkflowFinishedListeners()List<IExecutionStartedListener<IWorkflowEngine<T>>>IWorkflowEngine. getWorkflowStartedListeners()Methods in org.apache.hop.workflow.engine with parameters of type IWorkflowEngine Modifier and Type Method Description voidIWorkflowEngine. setParentWorkflow(IWorkflowEngine<WorkflowMeta> workflow)Method parameters in org.apache.hop.workflow.engine with type arguments of type IWorkflowEngine Modifier and Type Method Description voidIWorkflowEngine. addWorkflowFinishedListener(IExecutionFinishedListener<IWorkflowEngine<T>> finishedListener)voidIWorkflowEngine. addWorkflowStartedListener(IExecutionStartedListener<IWorkflowEngine<T>> finishedListener) -
Uses of IWorkflowEngine in org.apache.hop.workflow.engines.local
Classes in org.apache.hop.workflow.engines.local that implement IWorkflowEngine Modifier and Type Class Description classLocalWorkflowEngine -
Uses of IWorkflowEngine in org.apache.hop.workflow.engines.remote
Classes in org.apache.hop.workflow.engines.remote that implement IWorkflowEngine Modifier and Type Class Description classRemoteWorkflowEngineFields in org.apache.hop.workflow.engines.remote declared as IWorkflowEngine Modifier and Type Field Description protected IWorkflowEngine<WorkflowMeta>RemoteWorkflowEngine. parentWorkflowThe workflow that's launching this (sub-) workflow.Fields in org.apache.hop.workflow.engines.remote with type parameters of type IWorkflowEngine Modifier and Type Field Description protected List<IExecutionFinishedListener<IWorkflowEngine<WorkflowMeta>>>RemoteWorkflowEngine. workflowFinishedListenersprotected List<IExecutionStartedListener<IWorkflowEngine<WorkflowMeta>>>RemoteWorkflowEngine. workflowStartedListenersMethods in org.apache.hop.workflow.engines.remote that return IWorkflowEngine Modifier and Type Method Description IWorkflowEngine<WorkflowMeta>RemoteWorkflowEngine. getParentWorkflow()Gets parentWorkflowMethods in org.apache.hop.workflow.engines.remote that return types with arguments of type IWorkflowEngine Modifier and Type Method Description List<IExecutionFinishedListener<IWorkflowEngine<WorkflowMeta>>>RemoteWorkflowEngine. getWorkflowFinishedListeners()Gets workflowFinishedListenersList<IExecutionStartedListener<IWorkflowEngine<WorkflowMeta>>>RemoteWorkflowEngine. getWorkflowStartedListeners()Gets workflowStartedListenersMethods in org.apache.hop.workflow.engines.remote with parameters of type IWorkflowEngine Modifier and Type Method Description voidRemoteWorkflowEngine. setParentWorkflow(IWorkflowEngine<WorkflowMeta> parentWorkflow)Method parameters in org.apache.hop.workflow.engines.remote with type arguments of type IWorkflowEngine Modifier and Type Method Description voidRemoteWorkflowEngine. addWorkflowFinishedListener(IExecutionFinishedListener<IWorkflowEngine<WorkflowMeta>> finishedListener)voidRemoteWorkflowEngine. addWorkflowStartedListener(IExecutionStartedListener<IWorkflowEngine<WorkflowMeta>> finishedListener)voidRemoteWorkflowEngine. setWorkflowFinishedListeners(List<IExecutionFinishedListener<IWorkflowEngine<WorkflowMeta>>> workflowFinishedListeners)voidRemoteWorkflowEngine. setWorkflowStartedListeners(List<IExecutionStartedListener<IWorkflowEngine<WorkflowMeta>>> workflowStartedListeners) -
Uses of IWorkflowEngine in org.apache.hop.www
Methods in org.apache.hop.www that return IWorkflowEngine Modifier and Type Method Description protected IWorkflowEngine<WorkflowMeta>BaseWorkflowServlet. createWorkflow(WorkflowConfiguration workflowConfiguration)IWorkflowEngine<WorkflowMeta>WorkflowMap. findWorkflow(String id)Find a workflow using the container/carte object ID.IWorkflowEngine<WorkflowMeta>WorkflowMap. findWorkflow(String workflowName, String id)Find a workflow with an optional IDIWorkflowEngine<WorkflowMeta>WorkflowMap. getWorkflow(String workflowName)Find the first workflow in the list that comes to mind!IWorkflowEngine<WorkflowMeta>WorkflowMap. getWorkflow(HopServerObjectEntry entry)Methods in org.apache.hop.www with parameters of type IWorkflowEngine Modifier and Type Method Description voidWorkflowMap. addWorkflow(String workflowName, String serverObjectId, IWorkflowEngine<WorkflowMeta> workflow, WorkflowConfiguration workflowConfiguration)voidWorkflowMap. replaceWorkflow(IWorkflowEngine<WorkflowMeta> oldWorkflow, IWorkflowEngine<WorkflowMeta> workflow, WorkflowConfiguration workflowConfiguration)protected voidStartWorkflowServlet. runWorkflow(IWorkflowEngine workflow) -
Uses of IWorkflowEngine in org.apache.hop.www.jaxrs
Methods in org.apache.hop.www.jaxrs that return IWorkflowEngine Modifier and Type Method Description static IWorkflowEngine<WorkflowMeta>HopServerResource. getWorkflow(String id)
-