Class RowDataInputMapper
- java.lang.Object
-
- org.pentaho.di.trans.steps.simplemapping.RowDataInputMapper
-
public class RowDataInputMapper extends Object
This class renamed fields in rows before passing them to the row producer specified- Author:
- matt
-
-
Constructor Summary
Constructors Constructor Description RowDataInputMapper(MappingIODefinition inputDefinition, RowProducer rowProducer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
finished()
boolean
putRow(org.pentaho.di.core.row.RowMetaInterface rowMeta, Object[] row)
Attempts to put therow
onto the underlyingrowProducer
during its timeout period.
-
-
-
Constructor Detail
-
RowDataInputMapper
public RowDataInputMapper(MappingIODefinition inputDefinition, RowProducer rowProducer)
-
-
Method Detail
-
putRow
public boolean putRow(org.pentaho.di.core.row.RowMetaInterface rowMeta, Object[] row)
Attempts to put therow
onto the underlyingrowProducer
during its timeout period. Returnstrue
if the operation completed successfully andfalse
otherwise.- Parameters:
rowMeta
- input row's meta datarow
- input row- Returns:
true
if therow
was put successfully
-
finished
public void finished()
-
-