Class WorkManagerTaskExecutor
- java.lang.Object
- org.springframework.jndi.JndiAccessor
- org.springframework.jndi.JndiLocatorSupport
- org.springframework.jca.work.WorkManagerTaskExecutor
- All Implemented Interfaces:
Executor,WorkManager,Aware,InitializingBean,AsyncListenableTaskExecutor,AsyncTaskExecutor,TaskExecutor,BootstrapContextAware,SchedulingTaskExecutor
- Direct Known Subclasses:
GlassFishWorkManagerTaskExecutor,JBossWorkManagerTaskExecutor
public class WorkManagerTaskExecutor extends JndiLocatorSupport implements AsyncListenableTaskExecutor, SchedulingTaskExecutor, WorkManager, BootstrapContextAware, InitializingBean
TaskExecutorimplementation that delegates to a JCA 1.5 WorkManager, implementing theWorkManagerinterface.This is mainly intended for use within a JCA ResourceAdapter implementation, but may also be used in a standalone environment, delegating to a locally embedded WorkManager implementation (such as Geronimo's).
Also implements the JCA 1.5 WorkManager interface itself, delegating all calls to the target WorkManager. Hence, a caller can choose whether it wants to talk to this executor through the Spring TaskExecutor interface or the JCA 1.5 WorkManager interface.
This adapter is also capable of obtaining a JCA WorkManager from JNDI. This is for example appropriate on the Geronimo application server, where WorkManager GBeans (e.g. Geronimo's default "DefaultWorkManager" GBean) can be linked into the J2EE environment through "gbean-ref" entries in the
geronimo-web.xmldeployment descriptor.On JBoss and GlassFish, obtaining the default JCA WorkManager requires special lookup steps. See the
JBossWorkManagerTaskExecutorGlassFishWorkManagerTaskExecutorclasses which are the direct equivalent of this generic JCA adapter class.- Since:
- 2.0.3
- Author:
- Juergen Hoeller
- See Also:
setWorkManager(javax.resource.spi.work.WorkManager),WorkManager.scheduleWork(javax.resource.spi.work.Work)
Field Summary
Fields inherited from class org.springframework.jndi.JndiLocatorSupport
CONTAINER_PREFIX
Fields inherited from class org.springframework.jndi.JndiAccessor
logger
Fields inherited from interface org.springframework.core.task.AsyncTaskExecutor
TIMEOUT_IMMEDIATE, TIMEOUT_INDEFINITE
Fields inherited from interface javax.resource.spi.work.WorkManager
IMMEDIATE, INDEFINITE, UNKNOWN
Constructor Summary
Constructors Constructor Description WorkManagerTaskExecutor()Create a new WorkManagerTaskExecutor, expecting bean-style configuration.WorkManagerTaskExecutor(WorkManager workManager)Create a new WorkManagerTaskExecutor for the given WorkManager.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterPropertiesSet()Invoked by the containingBeanFactoryafter it has set all bean properties and satisfiedBeanFactoryAware,ApplicationContextAwareetc.voiddoWork(Work work)voiddoWork(Work work, long delay, ExecutionContext executionContext, WorkListener workListener)voidexecute(Runnable task)Execute the giventask.voidexecute(Runnable task, long startTimeout)Execute the giventask.protected WorkManagergetDefaultWorkManager()Obtain a default WorkManager to delegate to.booleanprefersShortLivedTasks()This task executor prefers short-lived work units.voidscheduleWork(Work work)voidscheduleWork(Work work, long delay, ExecutionContext executionContext, WorkListener workListener)voidsetBlockUntilCompleted(boolean blockUntilCompleted)Set whether to letexecute(java.lang.Runnable)block until the work has been completed.voidsetBlockUntilStarted(boolean blockUntilStarted)Set whether to letexecute(java.lang.Runnable)block until the work has been actually started.voidsetBootstrapContext(BootstrapContext bootstrapContext)Specify the JCA BootstrapContext that contains the WorkManager to delegate to.voidsetTaskDecorator(TaskDecorator taskDecorator)Specify a customTaskDecoratorto be applied to anyRunnableabout to be executed.voidsetWorkListener(WorkListener workListener)Specify a JCA 1.5 WorkListener to apply, if any.voidsetWorkManager(WorkManager workManager)Specify the JCA WorkManager instance to delegate to.voidsetWorkManagerName(String workManagerName)Set the JNDI name of the JCA WorkManager.longstartWork(Work work)longstartWork(Work work, long delay, ExecutionContext executionContext, WorkListener workListener)Future<?>submit(Runnable task)Submit a Runnable task for execution, receiving a Future representing that task.<T> Future<T>submit(Callable<T> task)Submit a Callable task for execution, receiving a Future representing that task.ListenableFuture<?>submitListenable(Runnable task)Submit aRunnabletask for execution, receiving aListenableFuturerepresenting that task.<T> ListenableFuture<T>submitListenable(Callable<T> task)Submit aCallabletask for execution, receiving aListenableFuturerepresenting that task.Methods inherited from class org.springframework.jndi.JndiLocatorSupport
convertJndiName, isResourceRef, lookup, lookup, setResourceRef
Methods inherited from class org.springframework.jndi.JndiAccessor
getJndiEnvironment, getJndiTemplate, setJndiEnvironment, setJndiTemplate
Constructor Detail
WorkManagerTaskExecutor
public WorkManagerTaskExecutor()
Create a new WorkManagerTaskExecutor, expecting bean-style configuration.
WorkManagerTaskExecutor
public WorkManagerTaskExecutor(WorkManager workManager)
Create a new WorkManagerTaskExecutor for the given WorkManager.- Parameters:
workManager- the JCA WorkManager to delegate to
Method Detail
setWorkManager
public void setWorkManager(WorkManager workManager)
Specify the JCA WorkManager instance to delegate to.
setWorkManagerName
public void setWorkManagerName(String workManagerName)
Set the JNDI name of the JCA WorkManager.This can either be a fully qualified JNDI name, or the JNDI name relative to the current environment naming context if "resourceRef" is set to "true".
setBootstrapContext
public void setBootstrapContext(BootstrapContext bootstrapContext)
Specify the JCA BootstrapContext that contains the WorkManager to delegate to.- Specified by:
setBootstrapContextin interfaceBootstrapContextAware- Parameters:
bootstrapContext- BootstrapContext object to be used by this object- See Also:
InitializingBean.afterPropertiesSet(),ApplicationContextAware.setApplicationContext(org.springframework.context.ApplicationContext)
setBlockUntilStarted
public void setBlockUntilStarted(boolean blockUntilStarted)
Set whether to letexecute(java.lang.Runnable)block until the work has been actually started.Uses the JCA
startWorkoperation underneath, instead of the defaultscheduleWork.
setBlockUntilCompleted
public void setBlockUntilCompleted(boolean blockUntilCompleted)
Set whether to letexecute(java.lang.Runnable)block until the work has been completed.Uses the JCA
doWorkoperation underneath, instead of the defaultscheduleWork.
setWorkListener
public void setWorkListener(WorkListener workListener)
Specify a JCA 1.5 WorkListener to apply, if any.This shared WorkListener instance will be passed on to the WorkManager by all
execute(java.lang.Runnable)calls on this TaskExecutor.
setTaskDecorator
public void setTaskDecorator(TaskDecorator taskDecorator)
Specify a customTaskDecoratorto be applied to anyRunnableabout to be executed.Note that such a decorator is not necessarily being applied to the user-supplied
Runnable/Callablebut 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
TaskDecoratorimplementations is limited to plainRunnableexecution viaexecutecalls. In case of#submitcalls, the exposedRunnablewill be aFutureTaskwhich does not propagate any exceptions; you might have to cast it and callFuture#getto evaluate exceptions.- Since:
- 4.3
afterPropertiesSet
public void afterPropertiesSet() throws NamingException
Description copied from interface:InitializingBeanInvoked by the containingBeanFactoryafter it has set all bean properties and satisfiedBeanFactoryAware,ApplicationContextAwareetc.This method allows the bean instance to perform validation of its overall configuration and final initialization when all bean properties have been set.
- Specified by:
afterPropertiesSetin interfaceInitializingBean- Throws:
NamingException
getDefaultWorkManager
protected WorkManager getDefaultWorkManager()
Obtain a default WorkManager to delegate to. Called if no explicit WorkManager or WorkManager JNDI name has been specified.The default implementation returns a
SimpleTaskWorkManager. Can be overridden in subclasses.
execute
public void execute(Runnable task)
Description copied from interface:TaskExecutorExecute the giventask.The call might return immediately if the implementation uses an asynchronous execution strategy, or might block in the case of synchronous execution.
- Specified by:
executein interfaceExecutor- Specified by:
executein interfaceTaskExecutor- Parameters:
task- theRunnableto execute (nevernull)
execute
public void execute(Runnable task, long startTimeout)
Description copied from interface:AsyncTaskExecutorExecute the giventask.- Specified by:
executein interfaceAsyncTaskExecutor- Parameters:
task- theRunnableto 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_IMMEDIATEorAsyncTaskExecutor.TIMEOUT_INDEFINITE(the default as used byTaskExecutor.execute(Runnable)).
submit
public Future<?> submit(Runnable task)
Description copied from interface:AsyncTaskExecutorSubmit a Runnable task for execution, receiving a Future representing that task. The Future will return anullresult upon completion.- Specified by:
submitin interfaceAsyncTaskExecutor- Parameters:
task- theRunnableto execute (nevernull)- Returns:
- a Future representing pending completion of the task
submit
public <T> Future<T> submit(Callable<T> task)
Description copied from interface:AsyncTaskExecutorSubmit a Callable task for execution, receiving a Future representing that task. The Future will return the Callable's result upon completion.- Specified by:
submitin interfaceAsyncTaskExecutor- Parameters:
task- theCallableto execute (nevernull)- Returns:
- a Future representing pending completion of the task
submitListenable
public ListenableFuture<?> submitListenable(Runnable task)
Description copied from interface:AsyncListenableTaskExecutorSubmit aRunnabletask for execution, receiving aListenableFuturerepresenting that task. The Future will return anullresult upon completion.- Specified by:
submitListenablein interfaceAsyncListenableTaskExecutor- Parameters:
task- theRunnableto execute (nevernull)- Returns:
- a
ListenableFuturerepresenting pending completion of the task
submitListenable
public <T> ListenableFuture<T> submitListenable(Callable<T> task)
Description copied from interface:AsyncListenableTaskExecutorSubmit aCallabletask for execution, receiving aListenableFuturerepresenting that task. The Future will return the Callable's result upon completion.- Specified by:
submitListenablein interfaceAsyncListenableTaskExecutor- Parameters:
task- theCallableto execute (nevernull)- Returns:
- a
ListenableFuturerepresenting pending completion of the task
prefersShortLivedTasks
public boolean prefersShortLivedTasks()
This task executor prefers short-lived work units.- Specified by:
prefersShortLivedTasksin interfaceSchedulingTaskExecutor- Returns:
trueif thisTaskExecutorprefers short-lived tasks
doWork
public void doWork(Work work) throws WorkException
- Specified by:
doWorkin interfaceWorkManager- Throws:
WorkException
doWork
public void doWork(Work work, long delay, ExecutionContext executionContext, WorkListener workListener) throws WorkException
- Specified by:
doWorkin interfaceWorkManager- Throws:
WorkException
startWork
public long startWork(Work work) throws WorkException
- Specified by:
startWorkin interfaceWorkManager- Throws:
WorkException
startWork
public long startWork(Work work, long delay, ExecutionContext executionContext, WorkListener workListener) throws WorkException
- Specified by:
startWorkin interfaceWorkManager- Throws:
WorkException
scheduleWork
public void scheduleWork(Work work) throws WorkException
- Specified by:
scheduleWorkin interfaceWorkManager- Throws:
WorkException
scheduleWork
public void scheduleWork(Work work, long delay, ExecutionContext executionContext, WorkListener workListener) throws WorkException
- Specified by:
scheduleWorkin interfaceWorkManager- Throws:
WorkException