Class ModulePostStartEvent
java.lang.Object
eu.cloudnetservice.driver.event.Event
eu.cloudnetservice.driver.event.events.module.ModuleEvent
eu.cloudnetservice.driver.event.events.module.ModulePostStartEvent
This event is being called after a module has been started and the tasks with the lifecycle
ModuleLifeCycle.STARTED of this module have been fired. ModuleWrapper.moduleLifeCycle() is still ModuleLifeCycle.LOADED or ModuleLifeCycle.STOPPED.- Since:
- 4.0
-
Constructor Summary
ConstructorsConstructorDescriptionModulePostStartEvent(@NonNull ModuleProvider moduleProvider, @NonNull ModuleWrapper module) Constructs a new module post start event. -
Method Summary
Methods inherited from class ModuleEvent
module, moduleProvider
-
Constructor Details
-
ModulePostStartEvent
public ModulePostStartEvent(@NonNull @NonNull ModuleProvider moduleProvider, @NonNull @NonNull ModuleWrapper module) Constructs a new module post start event.- Parameters:
moduleProvider- the provider in which the module is loaded.module- the module which is associated with this event.- Throws:
NullPointerException- if either the provider or wrapper is null.
-