| Interface | Description |
|---|---|
| Task |
Actions to perform
|
| TaskFactory |
Factory to build two tasks
Main task to perform actual work
Closing task to perform cleanup for main task
|
| Class | Description |
|---|---|
| ConfigurableTask |
Wrapper that adds convinience methods to any task
|
| DelegatingTask |
This class allows to dynamically change behaviour of the task
#set method can be used to change current behaviour
|
| ParallelTask |
Task that runs it's subtasks in parallel
Close methods are run sequentially
|
| RepeatingTask |
Task that when run repeatedly calles run method of it's subtask
Given pause is performed between invokations of subtask
Stop method breaks repeating cycle
|
| RunnableTask |
Task that runs given Runnable action
|
| SequenceTask |
Run it's subtasks in sequence
|
| Tasks |
Facade-class for Task-object
|
Copyright © 2013. All Rights Reserved.