Class SimpleAsyncTaskExecutor
- All Implemented Interfaces:
Serializable
,AutoCloseable
,Executor
,AsyncListenableTaskExecutor
,AsyncTaskExecutor
,TaskExecutor
- Direct Known Subclasses:
SimpleAsyncTaskScheduler
TaskExecutor
implementation that fires up a new Thread for each task,
executing it asynchronously. Provides a virtual thread option on JDK 21.
Supports a graceful shutdown through setTaskTerminationTimeout(long)
,
at the expense of task tracking overhead per execution thread at runtime.
Supports limiting concurrent threads through setConcurrencyLimit(int)
.
By default, the number of concurrent task executions is unlimited.
NOTE: This implementation does not reuse threads! Consider a
thread-pooling TaskExecutor implementation instead, in particular for
executing a large number of short-lived tasks. Alternatively, on JDK 21,
consider setting setVirtualThreads(boolean)
to true
.
- Since:
- 2.0
- Author:
- Juergen Hoeller
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Switch concurrency 'off': that is, don't allow any concurrent invocations.static final int
Permit any number of concurrent invocations: that is, don't throttle concurrency.Fields inherited from interface org.springframework.core.task.AsyncTaskExecutor
TIMEOUT_IMMEDIATE, TIMEOUT_INDEFINITE
-
Constructor Summary
ConstructorDescriptionCreate a new SimpleAsyncTaskExecutor with default thread name prefix.SimpleAsyncTaskExecutor
(String threadNamePrefix) Create a new SimpleAsyncTaskExecutor with the given thread name prefix.SimpleAsyncTaskExecutor
(ThreadFactory threadFactory) Create a new SimpleAsyncTaskExecutor with the given external thread factory. -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
This close methods tracks the termination of active threads if a concretetask termination timeout
has been set.protected void
Template method for the actual execution of a task.void
Executes the given task, within a concurrency throttle if configured (through the superclass's settings).void
Deprecated.final int
Return the maximum number of parallel task executions allowed.final ThreadFactory
Return the external factory to use for creating new Threads, if any.boolean
isActive()
Return whether this executor is still active, i.e.final boolean
Return whether the concurrency throttle is currently active.protected Thread
Create a new Thread for the given task.void
setConcurrencyLimit
(int concurrencyLimit) Set the maximum number of parallel task executions allowed.void
setTaskDecorator
(TaskDecorator taskDecorator) Specify a customTaskDecorator
to be applied to anyRunnable
about to be executed.void
setTaskTerminationTimeout
(long timeout) Specify a timeout (in milliseconds) for task termination when closing this executor.void
setThreadFactory
(ThreadFactory threadFactory) Specify an external factory to use for creating new Threads, instead of relying on the local properties of this executor.void
setVirtualThreads
(boolean virtual) Switch this executor to virtual threads.Future<?>
Submit a Runnable task for execution, receiving a Future representing that task.<T> Future<T>
Submit a Callable task for execution, receiving a Future representing that task.submitListenable
(Runnable task) Submit aRunnable
task for execution, receiving aListenableFuture
representing that task.<T> ListenableFuture<T>
submitListenable
(Callable<T> task) Submit aCallable
task for execution, receiving aListenableFuture
representing that task.Methods inherited from class org.springframework.util.CustomizableThreadCreator
createThread, getDefaultThreadNamePrefix, getThreadGroup, getThreadNamePrefix, getThreadPriority, isDaemon, nextThreadName, setDaemon, setThreadGroup, setThreadGroupName, setThreadNamePrefix, setThreadPriority
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.core.task.AsyncTaskExecutor
submitCompletable, submitCompletable
-
Field Details
-
UNBOUNDED_CONCURRENCY
public static final int UNBOUNDED_CONCURRENCYPermit any number of concurrent invocations: that is, don't throttle concurrency. -
NO_CONCURRENCY
public static final int NO_CONCURRENCYSwitch concurrency 'off': that is, don't allow any concurrent invocations.
-
-
Constructor Details
-
SimpleAsyncTaskExecutor
public SimpleAsyncTaskExecutor()Create a new SimpleAsyncTaskExecutor with default thread name prefix. -
SimpleAsyncTaskExecutor
Create a new SimpleAsyncTaskExecutor with the given thread name prefix.- Parameters:
threadNamePrefix
- the prefix to use for the names of newly created threads
-
SimpleAsyncTaskExecutor
Create a new SimpleAsyncTaskExecutor with the given external thread factory.- Parameters:
threadFactory
- the factory to use for creating new Threads
-
-
Method Details
-
setVirtualThreads
public void setVirtualThreads(boolean virtual) Switch this executor to virtual threads. Requires Java 21 or higher.The default is
false
, indicating platform threads. Set this flag totrue
in order to create virtual threads instead.- Since:
- 6.1
-
setThreadFactory
Specify an external factory to use for creating new Threads, instead of relying on the local properties of this executor.You may specify an inner ThreadFactory bean or also a ThreadFactory reference obtained from JNDI (on a Jakarta EE server) or some other lookup mechanism.
-
getThreadFactory
Return the external factory to use for creating new Threads, if any. -
setTaskDecorator
Specify a customTaskDecorator
to be applied to anyRunnable
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.
NOTE: Exception handling in
TaskDecorator
implementations is limited to plainRunnable
execution viaexecute
calls. In case of#submit
calls, the exposedRunnable
will be aFutureTask
which does not propagate any exceptions; you might have to cast it and callFuture#get
to evaluate exceptions.- Since:
- 4.3
-
setTaskTerminationTimeout
public void setTaskTerminationTimeout(long timeout) Specify a timeout (in milliseconds) for task termination when closing this executor. The default is 0, not waiting for task termination at all.Note that a concrete >0 timeout specified here will lead to the wrapping of every submitted task into a task-tracking runnable which involves considerable overhead in case of a high number of tasks. However, for a modest level of submissions with longer-running tasks, this is feasible in order to arrive at a graceful shutdown.
Note that
SimpleAsyncTaskExecutor
does not participate in a coordinated lifecycle stop but rather just awaits task termination onclose()
.- Parameters:
timeout
- the timeout in milliseconds- Since:
- 6.1
- See Also:
-
setConcurrencyLimit
public void setConcurrencyLimit(int concurrencyLimit) Set the maximum number of parallel task executions allowed. The default of -1 indicates no concurrency limit at all.This is the equivalent of a maximum pool size in a thread pool, preventing temporary overload of the thread management system.
-
getConcurrencyLimit
public final int getConcurrencyLimit()Return the maximum number of parallel task executions allowed. -
isThrottleActive
public final boolean isThrottleActive()Return whether the concurrency throttle is currently active.- Returns:
true
if the concurrency limit for this instance is active- See Also:
-
isActive
public boolean isActive()Return whether this executor is still active, i.e. not closed yet, and therefore accepts further task submissions. Otherwise, it is either in the task termination phase or entirely shut down already.- Since:
- 6.1
- See Also:
-
execute
Executes the given task, within a concurrency throttle if configured (through the superclass's settings).- Specified by:
execute
in interfaceExecutor
- Specified by:
execute
in interfaceTaskExecutor
- Parameters:
task
- theRunnable
to execute (nevernull
)- See Also:
-
execute
Deprecated.Executes the given task, within a concurrency throttle if configured (through the superclass's settings).Executes urgent tasks (with 'immediate' timeout) directly, bypassing the concurrency throttle (if active). All other tasks are subject to throttling.
- Specified by:
execute
in interfaceAsyncTaskExecutor
- Parameters:
task
- theRunnable
to execute (nevernull
)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 areAsyncTaskExecutor.TIMEOUT_IMMEDIATE
orAsyncTaskExecutor.TIMEOUT_INDEFINITE
(the default as used byTaskExecutor.execute(Runnable)
).- See Also:
-
submit
Description copied from interface:AsyncTaskExecutor
Submit a Runnable task for execution, receiving a Future representing that task. The Future will return anull
result upon completion.As of 6.1, this method comes with a default implementation that delegates to
TaskExecutor.execute(Runnable)
.- Specified by:
submit
in interfaceAsyncTaskExecutor
- Parameters:
task
- theRunnable
to execute (nevernull
)- Returns:
- a Future representing pending completion of the task
-
submit
Description copied from interface:AsyncTaskExecutor
Submit a Callable task for execution, receiving a Future representing that task. The Future will return the Callable's result upon completion.As of 6.1, this method comes with a default implementation that delegates to
TaskExecutor.execute(Runnable)
.- Specified by:
submit
in interfaceAsyncTaskExecutor
- Parameters:
task
- theCallable
to execute (nevernull
)- Returns:
- a Future representing pending completion of the task
-
submitListenable
Description copied from interface:AsyncListenableTaskExecutor
Submit aRunnable
task for execution, receiving aListenableFuture
representing that task. The Future will return anull
result upon completion.- Specified by:
submitListenable
in interfaceAsyncListenableTaskExecutor
- Parameters:
task
- theRunnable
to execute (nevernull
)- Returns:
- a
ListenableFuture
representing pending completion of the task
-
submitListenable
Description copied from interface:AsyncListenableTaskExecutor
Submit aCallable
task for execution, receiving aListenableFuture
representing that task. The Future will return the Callable's result upon completion.- Specified by:
submitListenable
in interfaceAsyncListenableTaskExecutor
- Parameters:
task
- theCallable
to execute (nevernull
)- Returns:
- a
ListenableFuture
representing pending completion of the task
-
doExecute
Template method for the actual execution of a task.The default implementation creates a new Thread and starts it.
- Parameters:
task
- the Runnable to execute- See Also:
-
newThread
Create a new Thread for the given task.- Parameters:
task
- the Runnable to create a Thread for- Returns:
- the new Thread instance
- Since:
- 6.1
- See Also:
-
close
public void close()This close methods tracks the termination of active threads if a concretetask termination timeout
has been set. Otherwise, it is not necessary to close this executor.- Specified by:
close
in interfaceAutoCloseable
- Since:
- 6.1
-