org.pentaho.di.trans
Interface TransListener

All Known Implementing Classes:
TransAdapter

public interface TransListener


Method Summary
 void transActive(Trans trans)
          This transformation went from an in-active to an active state.
 void transFinished(Trans trans)
          The transformation has finished.
 void transIdle(Trans trans)
          The transformation went from an active to an inactive state.
 void transStarted(Trans trans)
          This transformation started
 

Method Detail

transStarted

void transStarted(Trans trans)
                  throws KettleException
This transformation started

Parameters:
trans -
Throws:
KettleException

transActive

void transActive(Trans trans)
This transformation went from an in-active to an active state.

Parameters:
trans -
Throws:
KettleException

transIdle

void transIdle(Trans trans)
The transformation went from an active to an inactive state.

Parameters:
trans -
Throws:
KettleException

transFinished

void transFinished(Trans trans)
                   throws KettleException
The transformation has finished.

Parameters:
trans -
Throws:
KettleException