Uses of Interface
javax.util.concurrent.ManagedExecutorService

Uses of ManagedExecutorService in javax.util.concurrent
 

Subinterfaces of ManagedExecutorService in javax.util.concurrent
 interface ManagedScheduledExecutorService
          A manageable version of a ScheduledExecutorService.
 

Methods in javax.util.concurrent with parameters of type ManagedExecutorService
 void ManagedTaskListener.taskAborted(java.util.concurrent.Future<?> future, ManagedExecutorService executor, java.lang.Throwable exception)
          Called when a task’s Future has been cancelled anytime during the life of a task.
 void ManagedTaskListener.taskDone(java.util.concurrent.Future<?> future, ManagedExecutorService executor, java.lang.Throwable exception)
          Called when a submitted task has completed running, successful or otherwise after submitted.
 void ManagedTaskListener.taskStarting(java.util.concurrent.Future<?> future, ManagedExecutorService executor)
          This method is called after the task has been submitted to the Executor.
 void ManagedTaskListener.taskSubmitted(java.util.concurrent.Future<?> future, ManagedExecutorService executor)
          Called after the task has been submitted to the Executor.