Interface ActionExecutorListener
-
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
LogListener
public interface ActionExecutorListener extends EventListener
To listen execution on actionActionWorkerinActionExecutor.- Since:
- 3.0
- Author:
- Tony Chemit - dev@tchemit.fr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidactionCancel(ActionExecutorEvent event)When action has cancel.voidactionDone(ActionExecutorEvent event)When action has done.voidactionEnd(ActionExecutorEvent event)When action has end.voidactionFail(ActionExecutorEvent event)When action has failed.voidactionStart(ActionExecutorEvent event)When action has started.
-
-
-
Method Detail
-
actionStart
void actionStart(ActionExecutorEvent event)
When action has started.- Parameters:
event- the action executor event- See Also:
ActionExecutor.onActionStart(ActionWorker)
-
actionFail
void actionFail(ActionExecutorEvent event)
When action has failed.- Parameters:
event- the action executor event- See Also:
ActionExecutor.onActionFail(ActionWorker)
-
actionCancel
void actionCancel(ActionExecutorEvent event)
When action has cancel.- Parameters:
event- the action executor event- See Also:
ActionExecutor.onActionCancel(ActionWorker)
-
actionEnd
void actionEnd(ActionExecutorEvent event)
When action has end.- Parameters:
event- the action executor event- See Also:
ActionExecutor.onActionEnd(ActionWorker)
-
actionDone
void actionDone(ActionExecutorEvent event)
When action has done.- Parameters:
event- the action executor event- See Also:
ActionExecutor.onAfterAction(ActionWorker)
-
-