javax.util.concurrent
Interface ManagedTaskListener


public interface ManagedTaskListener

A ManagedTaskListener is used to monitor the state of a task's Future. It can be registered with a ManagedExecutorService using the submit methods and will be invoked when the state of the Future changes. Each listener method will run with the same context in which the task runs. The listener becomes a Contextual Task. All listeners run without an explicit transaction (they do not enlist in the application component's transaction). If a transaction is required, use a javax.transaction.UserTransaction instance.

Each listener instance will be invoked within the same process in which the listener was registered. If a single listener is submitted to multiple ManagedExecutorService instances, the listener object may be invoked concurrently by multiple threads.

Each listener method supports a minimum quality of service of at-most-once. A listener is not guaranteed to be invoked due to a process failure or termination. State Transition Diagram The following state transition figure and tables describe the possible task lifecycle events that can occur when a ManagedTaskListener is associated with a task. Each method is invoked when the state of the future moves from one state to another.

A. The task runs normally:

SequenceStateActionListenerNext state
1.Nonesubmit()taskSubmittedSubmitted
2.SubmittedAbout to call run()taskStartingStarted
3.StartedExit run()taskDoneDone

B. The task is cancelled during taskSubmitted():

SequenceStateActionListenerNext state
1.Nonesubmit()taskSubmitted
Future is cancelled.
Cancelling
2.Cancelling taskAbortedCancelled
3.Cancelled taskDoneDone

C. The task is cancelled or aborted after submitted, but before started:

SequenceStateActionListenerNext state
1.Nonesubmit()taskSubmittedSubmitted
2.Submittedcancel() or aborttaskAbortedCancelled
3.Cancelled taskDoneDone

D. The task is cancelled when it is starting:

SequenceStateActionListenerNext state
1.Nonesubmit()taskSubmittedSubmitted
2.SubmittedAbout to call run()taskStarting
Future is cancelled.
Cancelling
3.Cancelling taskAbortedCancelled
4.Cancelled taskDoneDone

Author:
Chris D Johnson

Method Summary
 void 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 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 taskStarting(java.util.concurrent.Future<?> future, ManagedExecutorService executor)
          This method is called after the task has been submitted to the Executor.
 void taskSubmitted(java.util.concurrent.Future<?> future, ManagedExecutorService executor)
          Called after the task has been submitted to the Executor.
 

Method Detail

taskSubmitted

void taskSubmitted(java.util.concurrent.Future<?> future,
                   ManagedExecutorService executor)
Called after the task has been submitted to the Executor. The task will not enter the starting state until the taskSubmitted listener has completed. This method may be called from the same thread that the task was submitted with.

This event does not indicate that the task has been scheduled for execution.

Parameters:
future - the future instance that was created when the task was submitted. The result of the future will throw a java.lang.IllegalStateException.
executor - the executor used to run the associated Future.

taskAborted

void 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. This method may be called after taskDone(). The Future.isCancelled() method returns false if the task was aborted through another means other than Future.cancel(). The exception argument will represent the cause of the cancellation: The AbortedException#getCause() method will return the exception that caused the task to fail to start.

Parameters:
future - the future instance that was created when the task was submitted.
executor - the executor used to run the associated Future.
exception - the cause of the task abort.

taskDone

void 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.

Parameters:
future - the future instance that was created when the task was submitted.
executor - the executor used to run the associated Future.
exception - if not null, the exception that caused the task to fail to run successfully.

taskStarting

void taskStarting(java.util.concurrent.Future<?> future,
                  ManagedExecutorService executor)
This method is called after the task has been submitted to the Executor. The task will not enter the starting state until the taskSubmitted listener has completed. This method may be called from the same thread that the task was submitted with.

Parameters:
future - the future instance that was created when the task was submitted. The result of the future will throw a java.lang.IllegalStateException.
executor - the executor used to run the associated Future.