com.ibm.di.server
Interface AssemblyLine.AssemblyLineListener

All Known Implementing Classes:
RS
Enclosing class:
AssemblyLine

public static interface AssemblyLine.AssemblyLineListener

This interface is for internal use only. Users must not rely on it.

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 assemblyLineCycleEnded(AssemblyLine al, Entry work)
          An AssemblyLine cycle (iteration) is complete.
 void assemblyLineTerminated(AssemblyLine al)
          The AssemblyLine terminated.
 

Method Detail

assemblyLineCycleEnded

void assemblyLineCycleEnded(AssemblyLine al,
                            Entry work)
                            throws Exception
An AssemblyLine cycle (iteration) is complete.

Parameters:
al - The AssemblyLine.
work - The work Entry.
Throws:
Exception - Will stop the AssemblyLine, so be careful.

assemblyLineTerminated

void assemblyLineTerminated(AssemblyLine al)
The AssemblyLine terminated.

Parameters:
al - The AssemblyLine.