Interface ModuleStateListener
- 
 public interface ModuleStateListener
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidmoduleStarted(ModuleInfo moduleInfo)Notification that a module has started.voidmoduleStarting(ModuleInfo moduleInfo)Notification that a module is starting.voidmoduleStopped(ModuleInfo moduleInfo)Notification that a module has stopped.voidmoduleStopping(ModuleInfo moduleInfo)Notification that a module is stopping.
 
- 
- 
- 
Method Detail- 
moduleStartingvoid moduleStarting(ModuleInfo moduleInfo) throws StateChangeException Notification that a module is starting.- Parameters:
- moduleInfo- The ModuleInfo of the module
- Throws:
- StateChangeException
 
 - 
moduleStartedvoid moduleStarted(ModuleInfo moduleInfo) throws StateChangeException Notification that a module has started.- Parameters:
- moduleInfo- The ModuleInfo of the module
- Throws:
- StateChangeException
 
 - 
moduleStoppingvoid moduleStopping(ModuleInfo moduleInfo) Notification that a module is stopping.- Parameters:
- moduleInfo- The ModuleInfo of the module
 
 - 
moduleStoppedvoid moduleStopped(ModuleInfo moduleInfo) Notification that a module has stopped.- Parameters:
- moduleInfo- The ModuleInfo of the module
 
 
- 
 
-