Interface ApplicationRunnerListener
-
- All Superinterfaces:
EventListener
public interface ApplicationRunnerListener extends EventListener
To listen execution onApplicationRunnerusingApplicationRunnerEvent.- Since:
- 3.0
- Author:
- Tony Chemit - dev@tchemit.fr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose(ApplicationRunnerEvent event)voiderror(ApplicationRunnerEvent event)voidinit(ApplicationRunnerEvent event)voidinitOnce(ApplicationRunnerEvent event)voidshutdown(ApplicationRunnerEvent event)voidshutdownWithError(ApplicationRunnerEvent event)voidstart(ApplicationRunnerEvent event)
-
-
-
Method Detail
-
initOnce
void initOnce(ApplicationRunnerEvent event)
- Parameters:
event- the action executor event- See Also:
ApplicationRunner.initOnce()
-
init
void init(ApplicationRunnerEvent event) throws Exception
- Parameters:
event- the action executor event- Throws:
Exception- See Also:
ApplicationRunner.onInit()
-
start
void start(ApplicationRunnerEvent event) throws Exception
- Parameters:
event- the action executor event- Throws:
Exception- See Also:
ApplicationRunner.onStart()
-
close
void close(ApplicationRunnerEvent event) throws Exception
- Parameters:
event- the action executor event- Throws:
Exception- See Also:
ApplicationRunner.onClose(boolean)
-
shutdown
void shutdown(ApplicationRunnerEvent event) throws Exception
- Parameters:
event- the action executor event- Throws:
Exception- See Also:
ApplicationRunner.onShutdown()
-
shutdownWithError
void shutdownWithError(ApplicationRunnerEvent event)
- Parameters:
event- the action executor event- See Also:
ApplicationRunner.onShutdown(Exception)
-
error
void error(ApplicationRunnerEvent event)
- Parameters:
event- the action executor event- See Also:
ApplicationRunner.onError(Exception)
-
-