Interface ActionExecutorListener
-
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
DefaultActionExecutorListener,WizardActionWorkerExecutorListener
public interface ActionExecutorListener extends EventListener
Created by tchemit on 26/01/2018.- Author:
- Tony Chemit - dev@tchemit.fr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonActionCancel(ActionExecutorEvent event)Hook when a action has been canceled.voidonActionEnd(ActionExecutorEvent event)Hook when a action has end with no failure or cancel.voidonActionFail(ActionExecutorEvent event)Hook when a action has failed.voidonActionStart(ActionExecutorEvent event)Hook when a action is about to start.voidonAfterAction(ActionExecutorEvent event)Hook after action is consumed.
-
-
-
Method Detail
-
onActionStart
void onActionStart(ActionExecutorEvent event)
Hook when a action is about to start.- Parameters:
event- event
-
onActionFail
void onActionFail(ActionExecutorEvent event)
Hook when a action has failed.- Parameters:
event- event
-
onActionCancel
void onActionCancel(ActionExecutorEvent event)
Hook when a action has been canceled.- Parameters:
event- event
-
onActionEnd
void onActionEnd(ActionExecutorEvent event)
Hook when a action has end with no failure or cancel.- Parameters:
event- event
-
onAfterAction
void onAfterAction(ActionExecutorEvent event)
Hook after action is consumed.- Parameters:
event- event
-
-