public class ConcurrentTaskExecutor extends java.lang.Object implements AsyncListenableTaskExecutor, SchedulingTaskExecutor
java.util.concurrent.Executor and exposes
 a Spring TaskExecutor for it.
 Also detects an extended java.util.concurrent.ExecutorService, adapting
 the AsyncTaskExecutor interface accordingly.
 Autodetects a JSR-236 ManagedExecutorService
 in order to expose ManagedTask adapters for it,
 exposing a long-running hint based on SchedulingAwareRunnable and an identity
 name based on the given Runnable/Callable's toString(). For JSR-236 style
 lookup in a Java EE 7 environment, consider using DefaultManagedTaskExecutor.
 
Note that there is a pre-built ThreadPoolTaskExecutor that allows
 for defining a ThreadPoolExecutor in bean style,
 exposing it as a Spring TaskExecutor directly.
 This is a convenient alternative to a raw ThreadPoolExecutor definition with
 a separate definition of the present adapter class.
Executor, 
ExecutorService, 
ThreadPoolExecutor, 
Executors, 
DefaultManagedTaskExecutor, 
ThreadPoolTaskExecutor| Modifier and Type | Class and Description | 
|---|---|
| protected static class  | ConcurrentTaskExecutor.ManagedTaskBuilderDelegate that wraps a given Runnable/Callable  with a JSR-236 ManagedTask,
 exposing a long-running hint based on  SchedulingAwareRunnableand a given identity name. | 
TIMEOUT_IMMEDIATE, TIMEOUT_INDEFINITE| Constructor and Description | 
|---|
| ConcurrentTaskExecutor()Create a new ConcurrentTaskExecutor, using a single thread executor as default. | 
| ConcurrentTaskExecutor(java.util.concurrent.Executor executor)Create a new ConcurrentTaskExecutor, using the given  Executor. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | execute(java.lang.Runnable task)Execute the given  task. | 
| void | execute(java.lang.Runnable task,
       long startTimeout)Execute the given  task. | 
| java.util.concurrent.Executor | getConcurrentExecutor()Return the  Executorthat this adapter delegates to. | 
| boolean | prefersShortLivedTasks()This task executor prefers short-lived work units. | 
| void | setConcurrentExecutor(java.util.concurrent.Executor executor)Specify the  Executorto delegate to. | 
| void | setTaskDecorator(TaskDecorator taskDecorator)Specify a custom  TaskDecoratorto be applied to anyRunnableabout to be executed. | 
| <T> java.util.concurrent.Future<T> | submit(java.util.concurrent.Callable<T> task)Submit a Callable task for execution, receiving a Future representing that task. | 
| java.util.concurrent.Future<?> | submit(java.lang.Runnable task)Submit a Runnable task for execution, receiving a Future representing that task. | 
| <T> ListenableFuture<T> | submitListenable(java.util.concurrent.Callable<T> task)Submit a  Callabletask for execution, receiving aListenableFuturerepresenting that task. | 
| ListenableFuture<?> | submitListenable(java.lang.Runnable task)Submit a  Runnabletask for execution, receiving aListenableFuturerepresenting that task. | 
public ConcurrentTaskExecutor()
Executors.newSingleThreadExecutor()public ConcurrentTaskExecutor(@Nullable java.util.concurrent.Executor executor)
Executor.
 Autodetects a JSR-236 ManagedExecutorService
 in order to expose ManagedTask adapters for it.
executor - the Executor to delegate topublic final void setConcurrentExecutor(@Nullable java.util.concurrent.Executor executor)
Executor to delegate to.
 Autodetects a JSR-236 ManagedExecutorService
 in order to expose ManagedTask adapters for it.
public final java.util.concurrent.Executor getConcurrentExecutor()
Executor that this adapter delegates to.public final void setTaskDecorator(TaskDecorator taskDecorator)
TaskDecorator to be applied to any Runnable
 about to be executed.
 Note that such a decorator is not necessarily being applied to the
 user-supplied Runnable/Callable but rather to the actual
 execution callback (which may be a wrapper around the user-supplied task).
 
The primary use case is to set some execution context around the task's invocation, or to provide some monitoring/statistics for task execution.
public void execute(java.lang.Runnable task)
TaskExecutortask.
 The call might return immediately if the implementation uses an asynchronous execution strategy, or might block in the case of synchronous execution.
execute in interface java.util.concurrent.Executorexecute in interface TaskExecutortask - the Runnable to execute (never null)public void execute(java.lang.Runnable task,
                    long startTimeout)
AsyncTaskExecutortask.execute in interface AsyncTaskExecutortask - the Runnable to execute (never null)startTimeout - the time duration (milliseconds) within which the task is
 supposed to start. This is intended as a hint to the executor, allowing for
 preferred handling of immediate tasks. Typical values are AsyncTaskExecutor.TIMEOUT_IMMEDIATE
 or AsyncTaskExecutor.TIMEOUT_INDEFINITE (the default as used by TaskExecutor.execute(Runnable)).public java.util.concurrent.Future<?> submit(java.lang.Runnable task)
AsyncTaskExecutornull result upon completion.submit in interface AsyncTaskExecutortask - the Runnable to execute (never null)public <T> java.util.concurrent.Future<T> submit(java.util.concurrent.Callable<T> task)
AsyncTaskExecutorsubmit in interface AsyncTaskExecutortask - the Callable to execute (never null)public ListenableFuture<?> submitListenable(java.lang.Runnable task)
AsyncListenableTaskExecutorRunnable task for execution, receiving a ListenableFuture
 representing that task. The Future will return a null result upon completion.submitListenable in interface AsyncListenableTaskExecutortask - the Runnable to execute (never null)ListenableFuture representing pending completion of the taskpublic <T> ListenableFuture<T> submitListenable(java.util.concurrent.Callable<T> task)
AsyncListenableTaskExecutorCallable task for execution, receiving a ListenableFuture
 representing that task. The Future will return the Callable's result upon
 completion.submitListenable in interface AsyncListenableTaskExecutortask - the Callable to execute (never null)ListenableFuture representing pending completion of the taskpublic boolean prefersShortLivedTasks()
prefersShortLivedTasks in interface SchedulingTaskExecutortrue if this TaskExecutor prefers
 short-lived tasks