Interface TaskActionListener
public interface TaskActionListener
A TaskActionListener is notified of the actions that a task performs.
-
Method Summary
Modifier and TypeMethodDescriptionvoidafterActions(Task task) This method is called immediately after the task has completed performing its actions.voidbeforeActions(Task task) This method is called immediately before the task starts performing its actions.
-
Method Details
-
beforeActions
This method is called immediately before the task starts performing its actions.- Parameters:
task- The task which is to perform some actions.
-
afterActions
This method is called immediately after the task has completed performing its actions.- Parameters:
task- The task which has performed some actions.
-