public class SyncTaskExecutor extends Object implements TaskExecutor, Serializable
TaskExecutor
implementation that executes each task synchronously
in the calling thread.
Mainly intended for testing scenarios.
Execution in the calling thread does have the advantage of participating
in it's thread context, for example the thread context class loader or the
thread's current transaction association. That said, in many cases,
asynchronous execution will be preferable: choose an asynchronous
TaskExecutor
instead for such scenarios.
SimpleAsyncTaskExecutor
,
Serialized FormConstructor and Description |
---|
SyncTaskExecutor() |
Modifier and Type | Method and Description |
---|---|
void |
execute(Runnable task)
Executes the given
task synchronously, through direct
invocation of it's run() method. |
public void execute(Runnable task)
task
synchronously, through direct
invocation of it's run()
method.execute
in interface Executor
execute
in interface TaskExecutor
task
- the Runnable
to execute (never null
)IllegalArgumentException
- if the given task
is null