com.ibm.di.server
Interface AssemblyLine.AssemblyLineListener

All Known Implementing Classes:
RS
Enclosing class:
AssemblyLine

public static interface AssemblyLine.AssemblyLineListener

A listener for AssemblyLine events. The listener will be invoked on the AssemblyLine thread, so the listener should synchronize its internals.

Since:
7.0

Method Summary
 void onAssemblyLineEvent(AssemblyLineEvent e)
          This method will be invoked when an AssemblyLine event occurs.
 

Method Detail

onAssemblyLineEvent

void onAssemblyLineEvent(AssemblyLineEvent e)
                         throws java.lang.Exception
This method will be invoked when an AssemblyLine event occurs.

Parameters:
e - AssemblyLine event object. Will never be null. Listeners should not use the event object outside of this method. If you need some data for later use, make a copy.
Throws:
java.lang.Exception - Will stop the AssemblyLine, so be careful.