Uses of Interface
org.apache.pivot.util.concurrent.TaskListener

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

Uses of TaskListener in org.apache.pivot.util.concurrent
 

Methods in org.apache.pivot.util.concurrent with parameters of type TaskListener
 void Task.execute(TaskListener<V> taskListenerArgument)
          Asynchronously executes the task.
 void Task.execute(TaskListener<V> taskListenerArgument, ExecutorService executorServiceArgument)
          Asynchronously executes the task.
 

Uses of TaskListener in org.apache.pivot.wtk
 

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

Constructors in org.apache.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 org.apache.pivot.wtk.media
 

Methods in org.apache.pivot.wtk.media with parameters of type TaskListener
static Image.LoadTask Image.load(URL location, TaskListener<Image> loadListener)