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
public class RowAdapter extends Object implements RowListener
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:
RowListener
-
-
Constructor Summary
Constructors Constructor Description RowAdapter()
Instantiates a new row adapter.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
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
-
-
-
Method Detail
-
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:
RowListener.errorRowWrittenEvent(org.pentaho.di.core.row.RowMetaInterface, java.lang.Object[])
-
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:
RowListener.rowReadEvent(org.pentaho.di.core.row.RowMetaInterface, java.lang.Object[])
-
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:
RowListener.rowWrittenEvent(org.pentaho.di.core.row.RowMetaInterface, java.lang.Object[])
-
-