See: Description
Interface | Description |
---|---|
AsyncListenableTaskExecutor |
Extension of the
AsyncTaskExecutor interface, adding the capability to submit
tasks for ListenableFutures . |
AsyncTaskExecutor |
Extended interface for asynchronous
TaskExecutor implementations,
offering support for Callable . |
TaskDecorator |
A callback interface for a decorator to be applied to any
Runnable
about to be executed. |
TaskExecutor |
Simple task executor interface that abstracts the execution
of a
Runnable . |
Class | Description |
---|---|
SimpleAsyncTaskExecutor |
TaskExecutor implementation that fires up a new Thread for each task,
executing it asynchronously. |
SyncTaskExecutor |
TaskExecutor implementation that executes each task synchronously
in the calling thread. |
Exception | Description |
---|---|
TaskRejectedException |
Exception thrown when a
TaskExecutor rejects to accept
a given task for execution. |
TaskTimeoutException | Deprecated
as of 5.3.16 since the common executors do not support start timeouts
|