Interface ModuleStateListener
public interface ModuleStateListener
-
Method Summary
Modifier and TypeMethodDescriptionvoid
moduleStarted
(ModuleInfo moduleInfo) Notification that a module has started.void
moduleStarting
(ModuleInfo moduleInfo) Notification that a module is starting.void
moduleStopped
(ModuleInfo moduleInfo) Notification that a module has stopped.void
moduleStopping
(ModuleInfo moduleInfo) Notification that a module is stopping.
-
Method Details
-
moduleStarting
Notification that a module is starting.- Parameters:
moduleInfo
- The ModuleInfo of the module- Throws:
StateChangeException
-
moduleStarted
Notification that a module has started.- Parameters:
moduleInfo
- The ModuleInfo of the module- Throws:
StateChangeException
-
moduleStopping
Notification that a module is stopping.- Parameters:
moduleInfo
- The ModuleInfo of the module
-
moduleStopped
Notification that a module has stopped.- Parameters:
moduleInfo
- The ModuleInfo of the module
-