Interface ModuleContextListener


public interface ModuleContextListener
Startup and shutdown event messages for Modules.
  • Method Summary

    Modifier and Type Method Description
    void moduleDestroyed​(Module module)
    Called when the Platform server is shutdown and the Modules are unloaded.
    void moduleInitialized​(Module module)
    Called immediately after a Module has been fully initialized in the Platform server.
  • Method Details

    • moduleInitialized

      void moduleInitialized​(Module module) throws java.lang.Exception
      Called immediately after a Module has been fully initialized in the Platform server. This will only be called once per Module per server startup.
      Parameters:
      module - the module.
      Throws:
      java.lang.Exception
    • moduleDestroyed

      void moduleDestroyed​(Module module) throws java.lang.Exception
      Called when the Platform server is shutdown and the Modules are unloaded. This is only called during shutdown.
      Parameters:
      module - the module.
      Throws:
      java.lang.Exception