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:
  • Constructor Summary

    Constructors
    Constructor
    Description
    Instantiates a new row adapter.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    errorRowWrittenEvent(org.pentaho.di.core.row.RowMetaInterface rowMeta, Object[] row)
    Empty method implementing the RowListener.errorRowWrittenEvent interface method
    void
    rowReadEvent(org.pentaho.di.core.row.RowMetaInterface rowMeta, Object[] row)
    Empty method implementing the RowListener.rowReadEvent interface method
    void
    rowWrittenEvent(org.pentaho.di.core.row.RowMetaInterface rowMeta, Object[] row)
    Empty method implementing the RowListener.rowWrittenEvent interface method

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • RowAdapter

      public RowAdapter()
      Instantiates a new row adapter.
  • Method Details