Uses of Interface
org.apache.hop.pipeline.engine.IPipelineEngine
-
-
Uses of IPipelineEngine in org.apache.hop.core.listeners
Methods in org.apache.hop.core.listeners with parameters of type IPipelineEngine Modifier and Type Method Description voidISubComponentExecutionListener. afterPipelineExecution(IPipelineEngine<PipelineMeta> pipeline)This method is called right after a sub-pipeline, mapping, single threader template, ...voidSubComponentExecutionAdapter. afterPipelineExecution(IPipelineEngine<PipelineMeta> pipeline)voidISubComponentExecutionListener. beforePipelineExecution(IPipelineEngine<PipelineMeta> pipeline)This method is called right before a sub-pipeline, mapping, single threader template, ...voidSubComponentExecutionAdapter. beforePipelineExecution(IPipelineEngine<PipelineMeta> pipeline) -
Uses of IPipelineEngine in org.apache.hop.execution
Methods in org.apache.hop.execution with parameters of type IPipelineEngine Modifier and Type Method Description static ExecutionDataBuilderExecutionDataBuilder. fromAllTransformData(IPipelineEngine<PipelineMeta> pipeline, Map<String,List<IExecutionDataSamplerStore>> samplerStoresMap, boolean finished)static ExecutionBuilderExecutionBuilder. fromExecutor(IPipelineEngine<PipelineMeta> pipeline)static ExecutionStateBuilderExecutionStateBuilder. fromExecutor(IPipelineEngine<PipelineMeta> pipeline, Integer lastLogLineNr)static ExecutionBuilderExecutionBuilder. fromTransform(IPipelineEngine<PipelineMeta> pipeline, ITransform transform)static ExecutionStateBuilderExecutionStateBuilder. fromTransform(IPipelineEngine<PipelineMeta> pipeline, IEngineComponent component) -
Uses of IPipelineEngine in org.apache.hop.pipeline
Classes in org.apache.hop.pipeline that implement IPipelineEngine Modifier and Type Class Description classPipelineThis class represents the information and operations associated with the execution of a Pipeline.Methods in org.apache.hop.pipeline that return IPipelineEngine Modifier and Type Method Description IPipelineEnginePipeline. getActiveSubPipeline(String subPipelineName)IPipelineEnginePipeline. getParentPipeline()Gets the parent pipeline, which is null if no parent pipeline exists.IPipelineEngine<PipelineMeta>PipelinePainter. getPipeline()Methods in org.apache.hop.pipeline that return types with arguments of type IPipelineEngine Modifier and Type Method Description Map<String,IPipelineEngine>Pipeline. getActiveSubPipelines()Gets activeSubPipelinesList<IExecutionFinishedListener<IPipelineEngine<PipelineMeta>>>Pipeline. getExecutionFinishedListeners()Gets executionFinishedListenersList<IExecutionStartedListener<IPipelineEngine<PipelineMeta>>>Pipeline. getExecutionStartedListeners()Gets executionStartedListenersList<IExecutionStoppedListener<IPipelineEngine<PipelineMeta>>>Pipeline. getExecutionStoppedListeners()Gets the list of stop-event listeners for the pipeline.Methods in org.apache.hop.pipeline with parameters of type IPipelineEngine Modifier and Type Method Description voidPipeline. addActiveSubPipeline(String subPipelineName, IPipelineEngine subPipeline)voidPipeline. setParentPipeline(IPipelineEngine parentPipeline)Sets the parent pipeline.voidPipelinePainter. setPipeline(IPipelineEngine<PipelineMeta> pipeline)Constructors in org.apache.hop.pipeline with parameters of type IPipelineEngine Constructor Description PipelinePainter(IGc gc, IVariables variables, PipelineMeta pipelineMeta, Point area, DPoint offset, PipelineHopMeta candidate, Rectangle selectRectangle, List<AreaOwner> areaOwners, int iconSize, int lineWidth, int gridSize, String noteFontName, int noteFontHeight, IPipelineEngine<PipelineMeta> pipeline, boolean slowTransformIndicatorEnabled, double zoomFactor, Map<String,RowBuffer> outputRowsMap, boolean drawingEditIcons, Map<String,Object> stateMap) -
Uses of IPipelineEngine in org.apache.hop.pipeline.debug
Methods in org.apache.hop.pipeline.debug with parameters of type IPipelineEngine Modifier and Type Method Description voidPipelineDebugMeta. addRowListenersToPipeline(IPipelineEngine<PipelineMeta> pipeline) -
Uses of IPipelineEngine in org.apache.hop.pipeline.engine
Methods in org.apache.hop.pipeline.engine that return IPipelineEngine Modifier and Type Method Description static <T extends PipelineMeta>
IPipelineEngine<T>PipelineEngineFactory. createPipelineEngine(IVariables parentVariables, String runConfigurationName, IHopMetadataProvider metadataProvider, T pipelineMeta)Create a new pipeline enginestatic <T extends PipelineMeta>
IPipelineEngine<T>PipelineEngineFactory. createPipelineEngine(PipelineRunConfiguration pipelineRunConfiguration, T pipelineMeta)IPipelineEngineIPipelineEngine. getActiveSubPipeline(String subPipelineName)Get the active sub-pipeline with the given nameIPipelineEngine<T>IPipelineEngine. getParentPipeline()Determine the pipeline engine which is executing this pipeline engine.Methods in org.apache.hop.pipeline.engine with parameters of type IPipelineEngine Modifier and Type Method Description voidIPipelineEngine. addActiveSubPipeline(String transformName, IPipelineEngine executorPipeline)Add an active sub-pipeline to allow drill-down in the GUIstatic <T extends PipelineMeta>
voidPipelineEngineFactory. applyVariableDefinitions(IPipelineEngine<T> pipelineEngine, List<DescribedVariable> configurationVariables)Apply all the variables in the pipeline run configuration...voidIFinishedListener. finished(IPipelineEngine<PipelineMeta> pipelineEngine)When all processing has completed for the engine.voidIPipelineComponentRowsReceived. rowsReceived(IPipelineEngine<PipelineMeta> pipelineEngine, RowBuffer rowBuffer)When all rows are received for a specific task (sniff, preview, debug, ...) this method will get called.voidIPipelineEngine. setParentPipeline(IPipelineEngine parentPipeline)Inform the pipeline that it's being executed as part of another pipelineMethod parameters in org.apache.hop.pipeline.engine with type arguments of type IPipelineEngine Modifier and Type Method Description voidIPipelineEngine. addExecutionFinishedListener(IExecutionFinishedListener<IPipelineEngine<T>> listener)Call the given listener lambda when this pipeline engine has completed execution.voidIPipelineEngine. addExecutionStartedListener(IExecutionStartedListener<IPipelineEngine<T>> listener)Call the given listener lambda when this pipeline engine has started execution.voidIPipelineEngine. addExecutionStoppedListener(IExecutionStoppedListener<IPipelineEngine<T>> listener)Call the given listener lambda when this pipeline engine has stopped execution. -
Uses of IPipelineEngine in org.apache.hop.pipeline.engines.local
Classes in org.apache.hop.pipeline.engines.local that implement IPipelineEngine Modifier and Type Class Description classLocalPipelineEngine -
Uses of IPipelineEngine in org.apache.hop.pipeline.engines.localsingle
Classes in org.apache.hop.pipeline.engines.localsingle that implement IPipelineEngine Modifier and Type Class Description classLocalSinglePipelineEngine -
Uses of IPipelineEngine in org.apache.hop.pipeline.engines.remote
Classes in org.apache.hop.pipeline.engines.remote that implement IPipelineEngine Modifier and Type Class Description classRemotePipelineEngineFields in org.apache.hop.pipeline.engines.remote declared as IPipelineEngine Modifier and Type Field Description protected IPipelineEngineRemotePipelineEngine. parentPipelineFields in org.apache.hop.pipeline.engines.remote with type parameters of type IPipelineEngine Modifier and Type Field Description protected Map<String,IPipelineEngine>RemotePipelineEngine. activeSubPipelinesThe active sub-pipelines.protected List<IExecutionFinishedListener<IPipelineEngine<PipelineMeta>>>RemotePipelineEngine. executionFinishedListenersA list of finished listeners attached to the pipeline.protected List<IExecutionStartedListener<IPipelineEngine<PipelineMeta>>>RemotePipelineEngine. executionStartedListenersA list of started listeners attached to the pipeline.protected List<IExecutionStoppedListener<IPipelineEngine<PipelineMeta>>>RemotePipelineEngine. executionStoppedListenersA list of stop-event listeners attached to the pipeline.Methods in org.apache.hop.pipeline.engines.remote that return IPipelineEngine Modifier and Type Method Description IPipelineEngineRemotePipelineEngine. getActiveSubPipeline(String subPipelineName)IPipelineEngineRemotePipelineEngine. getParentPipeline()Gets parentPipelineMethods in org.apache.hop.pipeline.engines.remote that return types with arguments of type IPipelineEngine Modifier and Type Method Description Map<String,IPipelineEngine>RemotePipelineEngine. getActiveSubPipelines()Gets activeSubPipelinesList<IExecutionFinishedListener<IPipelineEngine<PipelineMeta>>>RemotePipelineEngine. getExecutionFinishedListeners()Gets executionFinishedListenersList<IExecutionStartedListener<IPipelineEngine<PipelineMeta>>>RemotePipelineEngine. getExecutionStartedListeners()Gets executionStartedListenersList<IExecutionStoppedListener<IPipelineEngine<PipelineMeta>>>RemotePipelineEngine. getExecutionStoppedListeners()Gets executionStoppedListenersMethods in org.apache.hop.pipeline.engines.remote with parameters of type IPipelineEngine Modifier and Type Method Description voidRemotePipelineEngine. addActiveSubPipeline(String subPipelineName, IPipelineEngine subPipeline)voidRemotePipelineEngine. setParentPipeline(IPipelineEngine parentPipeline)Method parameters in org.apache.hop.pipeline.engines.remote with type arguments of type IPipelineEngine Modifier and Type Method Description voidRemotePipelineEngine. addExecutionStoppedListener(IExecutionStoppedListener<IPipelineEngine<PipelineMeta>> listener)voidRemotePipelineEngine. setActiveSubPipelines(Map<String,IPipelineEngine> activeSubPipelines)voidRemotePipelineEngine. setExecutionFinishedListeners(List<IExecutionFinishedListener<IPipelineEngine<PipelineMeta>>> executionFinishedListeners)voidRemotePipelineEngine. setExecutionStartedListeners(List<IExecutionStartedListener<IPipelineEngine<PipelineMeta>>> executionStartedListeners)voidRemotePipelineEngine. setExecutionStoppedListeners(List<IExecutionStoppedListener<IPipelineEngine<PipelineMeta>>> executionStoppedListeners) -
Uses of IPipelineEngine in org.apache.hop.pipeline.transform
Methods in org.apache.hop.pipeline.transform that return IPipelineEngine Modifier and Type Method Description IPipelineEngine<PipelineMeta>BaseTransform. getDispatcher()Gets the dispatcher.IPipelineEngine<PipelineMeta>BaseTransform. getPipeline()IPipelineEngine<PipelineMeta>ITransform. getPipeline()Methods in org.apache.hop.pipeline.transform with parameters of type IPipelineEngine Modifier and Type Method Description voidITransformFinishedListener. transformFinished(IPipelineEngine pipeline, TransformMeta transformMeta, ITransform transform)This method is called when a transform completes all work and is finished.voidITransformStartedListener. transformStarted(IPipelineEngine pipeline, TransformMeta transformMeta, ITransform transform)This method is called when a transform started to execute. -
Uses of IPipelineEngine in org.apache.hop.workflow
Fields in org.apache.hop.workflow declared as IPipelineEngine Modifier and Type Field Description protected IPipelineEngineWorkflow. parentPipelineThe parent pipelineMethods in org.apache.hop.workflow that return IPipelineEngine Modifier and Type Method Description IPipelineEngineWorkflow. getParentPipeline()Methods in org.apache.hop.workflow with parameters of type IPipelineEngine Modifier and Type Method Description voidDelegationAdapter. pipelineDelegationStarted(IPipelineEngine<PipelineMeta> delegatedPipeline, PipelineExecutionConfiguration pipelineExecutionConfiguration)voidIDelegationListener. pipelineDelegationStarted(IPipelineEngine<PipelineMeta> delegatedPipeline, PipelineExecutionConfiguration pipelineExecutionConfiguration)voidWorkflow. setParentPipeline(IPipelineEngine parentPipeline) -
Uses of IPipelineEngine in org.apache.hop.workflow.engine
Methods in org.apache.hop.workflow.engine that return IPipelineEngine Modifier and Type Method Description IPipelineEngine<PipelineMeta>IWorkflowEngine. getParentPipeline()Methods in org.apache.hop.workflow.engine with parameters of type IPipelineEngine Modifier and Type Method Description voidIWorkflowEngine. setParentPipeline(IPipelineEngine<PipelineMeta> pipeline) -
Uses of IPipelineEngine in org.apache.hop.workflow.engines.remote
Fields in org.apache.hop.workflow.engines.remote declared as IPipelineEngine Modifier and Type Field Description protected IPipelineEngineRemoteWorkflowEngine. parentPipelineThe parent pipelineMethods in org.apache.hop.workflow.engines.remote that return IPipelineEngine Modifier and Type Method Description IPipelineEngineRemoteWorkflowEngine. getParentPipeline()Gets parentPipelineMethods in org.apache.hop.workflow.engines.remote with parameters of type IPipelineEngine Modifier and Type Method Description voidRemoteWorkflowEngine. setParentPipeline(IPipelineEngine parentPipeline) -
Uses of IPipelineEngine in org.apache.hop.www
Methods in org.apache.hop.www that return IPipelineEngine Modifier and Type Method Description protected IPipelineEngine<PipelineMeta>BaseWorkflowServlet. createPipeline(PipelineConfiguration pipelineConfiguration)IPipelineEngine<PipelineMeta>PipelineMap. getPipeline(String pipelineName)Find the first pipeline in the list that comes to mind!IPipelineEngine<PipelineMeta>PipelineMap. getPipeline(HopServerObjectEntry entry)Methods in org.apache.hop.www with parameters of type IPipelineEngine Modifier and Type Method Description voidPipelineMap. addPipeline(String pipelineName, String containerObjectId, IPipelineEngine<PipelineMeta> pipeline, PipelineConfiguration pipelineConfiguration)Add a pipeline to the mapprotected voidStartPipelineServlet. executePipeline(IPipelineEngine<PipelineMeta> pipeline)protected voidStartExecutionPipelineServlet. startThreads(IPipelineEngine<PipelineMeta> pipeline) -
Uses of IPipelineEngine in org.apache.hop.www.jaxrs
Methods in org.apache.hop.www.jaxrs that return IPipelineEngine Modifier and Type Method Description static IPipelineEngine<PipelineMeta>HopServerResource. getPipeline(String id)
-