Package 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
assemblyLineCycleEnded(AssemblyLine al, Entry work)
An AssemblyLine cycle (iteration) is complete.void
assemblyLineStarted(AssemblyLine al)
The AssemblyLine started.void
assemblyLineTerminated(AssemblyLine al)
The AssemblyLine terminated.
-
-
-
Method Detail
-
assemblyLineStarted
void assemblyLineStarted(AssemblyLine al)
The AssemblyLine started.- Parameters:
al
- The AssemblyLine.- Since:
- 7.1
-
assemblyLineCycleEnded
void assemblyLineCycleEnded(AssemblyLine al, Entry work) throws java.lang.Exception
An AssemblyLine cycle (iteration) is complete.- Parameters:
al
- The AssemblyLine.work
- The work Entry.- Throws:
java.lang.Exception
- Will stop the AssemblyLine, so be careful.
-
assemblyLineTerminated
void assemblyLineTerminated(AssemblyLine al)
The AssemblyLine terminated.- Parameters:
al
- The AssemblyLine.
-
-