Uses of Interface
pivot.util.concurrent.TaskListener

Packages that use TaskListener
pivot.util.concurrent Provides a set of classes to simplify the execution of background tasks. 
pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
pivot.wtk.media Contains classes that provide multimedia support. 
 

Uses of TaskListener in pivot.util.concurrent
 

Methods in pivot.util.concurrent with parameters of type TaskListener
 void Task.execute(TaskListener<V> taskListener)
          Asynchronously executes the task.
 

Uses of TaskListener in pivot.wtk
 

Classes in pivot.wtk that implement TaskListener
 class TaskAdapter<T>
          Class that forwards task events to the UI thread.
 

Constructors in pivot.wtk with parameters of type TaskListener
TaskAdapter(TaskListener<T> taskListener)
          Creates a new TaskAdapter that wraps the specified task listener.
 

Uses of TaskListener in pivot.wtk.media
 

Methods in pivot.wtk.media with parameters of type TaskListener
static Image.LoadTask Image.load(java.net.URL url, TaskListener<Image> loadListener)