com.ibm.di.server
Interface ConfigInstanceListener


public interface ConfigInstanceListener

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

Listener for configuration instance notifications.

Since:
7.0

Method Summary
 void assemblyLineStarted(AssemblyLine assemblyLine)
          AssemblyLine started from the configuration instance.
 void assemblyLineStopped(AssemblyLine assemblyLine)
          AssemblyLine stopped.
 void configInstanceStarted(RSInterface configInstance)
          The configuration instance started - the log is created and the thread is running, but it may not be fully initialized yet.
 void configInstanceStopped(RSInterface configInstance)
          The configuration instance stopped.
 

Method Detail

configInstanceStarted

void configInstanceStarted(RSInterface configInstance)
The configuration instance started - the log is created and the thread is running, but it may not be fully initialized yet. This method will be invoked for listeners which are registered at the startup of the configuration instance. Listeners added at runtime are highly unlikely to be registered early enough to get this notification.

Parameters:
configInstance - The configuration instance.

assemblyLineStarted

void assemblyLineStarted(AssemblyLine assemblyLine)
AssemblyLine started from the configuration instance.

Parameters:
assemblyLine - AssemblyLine.

assemblyLineStopped

void assemblyLineStopped(AssemblyLine assemblyLine)
AssemblyLine stopped. The AssemblyLine was started from this configuration instance.

Parameters:
assemblyLine - AssemblyLine.

configInstanceStopped

void configInstanceStopped(RSInterface configInstance)
The configuration instance stopped.

Parameters:
configInstance - The configuration instance.