com.ibm.websphere.asynchbeans
Interface WorkListener
All Superinterfaces:
java.util.EventListener
- public interface WorkListener
- extends java.util.EventListener
See Also:
Method Summary
Modifier and Type | Method and Description |
---|---|
|
workAccepted(WorkEvent we)
This is called when the Work is accepted for dispatching.
|
|
workCompleted(WorkEvent we)
This is called once Work.run returns.
|
|
workRejected(WorkEvent we)
This is called when the Work cannot be processed prior to starting but after accept.
|
|
workStarted(WorkEvent we)
This is called when the Work is about to start.
|
Method Detail
workAccepted
- void workAccepted(WorkEvent we)
This is called when the Work is accepted for dispatching.
workRejected
- void workRejected(WorkEvent we)
This is called when the Work cannot be processed prior to starting but after accept.
workStarted
- void workStarted(WorkEvent we)
This is called when the Work is about to start. When this returns the Work.run is called.
workCompleted
- void workCompleted(WorkEvent we)
This is called once Work.run returns.