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
-
Method Summary
Modifier and TypeMethodDescriptionvoid
errorRowWrittenEvent
(org.pentaho.di.core.row.RowMetaInterface rowMeta, Object[] row) Empty method implementing the RowListener.errorRowWrittenEvent interface methodvoid
rowReadEvent
(org.pentaho.di.core.row.RowMetaInterface rowMeta, Object[] row) Empty method implementing the RowListener.rowReadEvent interface methodvoid
rowWrittenEvent
(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:
errorRowWrittenEvent
in 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:
rowReadEvent
in 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:
rowWrittenEvent
in 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:
-