Examples of StepInterface


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
Copyright © 2018 www.massapi.com. 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.