Package org.pentaho.di.trans.step

Examples of org.pentaho.di.trans.step.StepInterface


                                                  final DataFactoryContext context,
                                                  final TransMeta transMeta) throws EvaluationException, ParseException, KettleException, ReportDataFactoryException
  {
    final Trans trans = prepareTransformation(parameters, context, transMeta);

    StepInterface targetStep = findTargetStep(trans);

    final RowMetaInterface row = transMeta.getStepFields(getStepName());
    TableProducer tableProducer = new TableProducer(row, queryLimit, isStopOnError());
    targetStep.addRowListener(tableProducer);

    currentlyRunningTransformation = trans;
    try
    {
      trans.startThreads();
View Full Code Here

TOP

Related Classes of org.pentaho.di.trans.step.StepInterface

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.