Package org.pentaho.di.trans.step
Class RowAdapter
java.lang.Object
org.pentaho.di.trans.step.RowAdapter
- All Implemented Interfaces:
RowListener
- Direct Known Subclasses:
RowOutputDataMapper
RowAdapter is an adapter class for receiving row events. The methods in this class are empty. This class exists as
convenience for creating row listener objects that may not need to implement all the methods of the RowListener
interface
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoiderrorRowWrittenEvent(org.pentaho.di.core.row.RowMetaInterface rowMeta, Object[] row) Empty method implementing the RowListener.errorRowWrittenEvent interface methodvoidrowReadEvent(org.pentaho.di.core.row.RowMetaInterface rowMeta, Object[] row) Empty method implementing the RowListener.rowReadEvent interface methodvoidrowWrittenEvent(org.pentaho.di.core.row.RowMetaInterface rowMeta, Object[] row) Empty method implementing the RowListener.rowWrittenEvent interface method
-
Constructor Details
-
RowAdapter
public RowAdapter()Instantiates a new row adapter.
-
-
Method Details
-
errorRowWrittenEvent
public void errorRowWrittenEvent(org.pentaho.di.core.row.RowMetaInterface rowMeta, Object[] row) throws org.pentaho.di.core.exception.KettleStepException Empty method implementing the RowListener.errorRowWrittenEvent interface method- Specified by:
errorRowWrittenEventin interfaceRowListener- Parameters:
rowMeta- the metadata of the rowrow- the data of the row- Throws:
org.pentaho.di.core.exception.KettleStepException- an exception that can be thrown to hard stop the step- See Also:
-
rowReadEvent
public void rowReadEvent(org.pentaho.di.core.row.RowMetaInterface rowMeta, Object[] row) throws org.pentaho.di.core.exception.KettleStepException Empty method implementing the RowListener.rowReadEvent interface method- Specified by:
rowReadEventin interfaceRowListener- Parameters:
rowMeta- the metadata of the rowrow- the data of the row- Throws:
org.pentaho.di.core.exception.KettleStepException- an exception that can be thrown to hard stop the step- See Also:
-
rowWrittenEvent
public void rowWrittenEvent(org.pentaho.di.core.row.RowMetaInterface rowMeta, Object[] row) throws org.pentaho.di.core.exception.KettleStepException Empty method implementing the RowListener.rowWrittenEvent interface method- Specified by:
rowWrittenEventin interfaceRowListener- Parameters:
rowMeta- the metadata of the rowrow- the data of the row- Throws:
org.pentaho.di.core.exception.KettleStepException- an exception that can be thrown to hard stop the step- See Also:
-