com.ibm.websphere.scheduler
Interface TaskHandler
All Superinterfaces:
javax.ejb.EJBObject, java.rmi.Remote
- public interface TaskHandler
- extends javax.ejb.EJBObject
A TaskHandler bean is the EJB that is invoked when a scheduled task fires on a BeanTaskInfo
task. When this happens, the process
method is called with the the current TaskStatus
task state.
All TaskHandlers are required to use
this remote interface and the com.ibm.websphere.scheduler.TaskHandlerHome
home interface.
Since:
5.0
Version:
5.0
See Also:
Method Summary
Modifier and Type | Method and Description |
---|---|
|
process(TaskStatus task)
Called when a scheduled
BeanTaskInfo fires.
|
Methods inherited from interface javax.ejb.EJBObject |
---|
getEJBHome, getHandle, getPrimaryKey, isIdentical, remove |
Method Detail
process
- void process(TaskStatus task)
- throws java.rmi.RemoteException
Parameters:
task
- the current TaskStatus
for the scheduled task. Throws:
java.rmi.RemoteException
Since:
5.0
See Also:
BeanTaskInfo
fires.