Package org.pentaho.di.pan.executors
Class LocalTransExecutorService
java.lang.Object
org.pentaho.di.pan.executors.LocalTransExecutorService
- All Implemented Interfaces:
TransExecutorService
Service for executing transformations locally.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.pentaho.di.core.Resultexecute(org.pentaho.di.core.logging.LogChannelInterface log, TransMeta transMeta, Repository repository, TransExecutionConfiguration executionConfiguration, String[] arguments) Executes a transformation locally.protected org.pentaho.di.core.Resultexecute(Trans trans, Repository repository, TransExecutionConfiguration executionConfiguration, String[] arguments) Executes a transformation locally.
-
Constructor Details
-
LocalTransExecutorService
public LocalTransExecutorService()
-
-
Method Details
-
execute
public org.pentaho.di.core.Result execute(org.pentaho.di.core.logging.LogChannelInterface log, TransMeta transMeta, Repository repository, TransExecutionConfiguration executionConfiguration, String[] arguments) throws org.pentaho.di.core.exception.KettleException Executes a transformation locally.- Specified by:
executein interfaceTransExecutorService- Parameters:
log- the log channel interface for loggingtransMeta- the transformation metadatarepository- the repository (can be null)executionConfiguration- the execution configurationarguments- the command-line arguments- Returns:
- the result of the transformation execution
- Throws:
org.pentaho.di.core.exception.KettleException- if an error occurs during execution
-
execute
protected org.pentaho.di.core.Result execute(Trans trans, Repository repository, TransExecutionConfiguration executionConfiguration, String[] arguments) throws org.pentaho.di.core.exception.KettleException Executes a transformation locally.- Parameters:
trans- the transformation objectrepository- the repository (can be null)executionConfiguration- the execution configurationarguments- the command-line arguments- Returns:
- the result of the transformation execution
- Throws:
org.pentaho.di.core.exception.KettleException- if an error occurs during execution
-