Package jakarta.resource.spi.work
Interface WorkListener
-
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
WorkAdapter
public interface WorkListener extends EventListener
This models aWorkListenerinstance which would be notified by theWorkManagerwhen the variousWorkprocessing events (work accepted, work rejected, work started, work completed) occur. TheWorkListenerinstance must not make any thread assumptions and must be thread-safe ie., a notification could occur from any arbitrary thread. Further, it must not make any assumptions on the ordering of notifications.- Version:
- 1.0
- Author:
- Ram Jeyaraman
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidworkAccepted(WorkEvent e)Invoked when aWorkinstance has been accepted.voidworkCompleted(WorkEvent e)Invoked when aWorkinstance has completed execution.voidworkRejected(WorkEvent e)Invoked when aWorkinstance has been rejected.voidworkStarted(WorkEvent e)Invoked when aWorkinstance has started execution.
-
-
-
Method Detail
-
workAccepted
void workAccepted(WorkEvent e)
Invoked when aWorkinstance has been accepted.- Parameters:
e- AWorkEventobject that provides more information about the accepted Work.
-
workRejected
void workRejected(WorkEvent e)
Invoked when aWorkinstance has been rejected.- Parameters:
e- AWorkEventobject that provides more information about the rejected Work.
-
workStarted
void workStarted(WorkEvent e)
Invoked when aWorkinstance has started execution. This only means that a thread has been allocated.- Parameters:
e- AWorkEventobject that provides more information about the rejected Work.
-
workCompleted
void workCompleted(WorkEvent e)
Invoked when aWorkinstance has completed execution.- Parameters:
e- AWorkEventobject that provides more information about the completed Work.
-
-