Interface | Description |
---|---|
Task |
Task is a job that can be ran by the Session when
certain types of events are received.
|
Class | Description |
---|---|
OnceTaskImpl |
An augmented
TaskImpl that only executes once
as it cancels itself out of the task queue once completed,
even if it fails (= throws an Exception ). |
OnceUntilSucceedsTaskImpl |
An augmented
TaskImpl that only executes once
as it cancels itself out of the task queue once completed,
until it succeeds (if it bails out with a
RuntimeException or
returns false ,
it will remain in the task queue. |
TaskImpl |
An impl of the Task interface.
|