当前页面:
在线文档首页 >
Spring Framework 2.0.5 API 文档英文版
SyncTaskExecutor (Spring Framework API 2.0) - Spring Framework 2.0.5 API 文档英文版
org.springframework.core.task
Class SyncTaskExecutor
java.lang.Object
org.springframework.core.task.SyncTaskExecutor
- All Implemented Interfaces:
- Serializable, TaskExecutor
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.
- Since:
- 2.0
- Author:
- Juergen Hoeller
- See Also:
SimpleAsyncTaskExecutor
,
TimerTaskExecutor
,
Serialized Form
Method Summary |
void |
execute(Runnable task)
Executes the given task synchronously, through direct
invocation of it's run() method. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SyncTaskExecutor
public SyncTaskExecutor()
execute
public void execute(Runnable task)
- Executes the given
task
synchronously, through direct
invocation of it's run()
method.
- Specified by:
execute
in interface TaskExecutor
- Parameters:
task
- the Runnable
to execute (never null
)
- Throws:
IllegalArgumentException
- if the given task
is null
Copyright © 2002-2007 The Spring Framework.