Oracle

commonj.work
Interface WorkListener

All Superinterfaces:
EventListener

public interface WorkListener
extends EventListener

This is a callback interface called to report on the dispatching of a Work. It is implemented by the application and supplied to scheduleWork methods on a WorkManager. The J2EE context active on the thread during WorkManager scheduling will be applied each of the event methods. See WorkManager for details.

Since:
1.0
See Also:
WorkManager

Method Summary
 void workAccepted(WorkEvent we)
          This is called when the Work is accepted for dispatching.
 void workCompleted(WorkEvent we)
          This is called once Work.run returns.
 void workRejected(WorkEvent we)
          This is called when the Work cannot be processed prior to starting but after accept.
 void 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.

Since:
1.0

workRejected

void workRejected(WorkEvent we)
This is called when the Work cannot be processed prior to starting but after accept.

Since:
1.0

workStarted

void workStarted(WorkEvent we)
This is called when the Work is about to start. When this returns the Work.run is called.

Since:
1.0

workCompleted

void workCompleted(WorkEvent we)
This is called once Work.run returns.

Since:
1.0

Documentation is available at
http://edocs.bea.com/wls/docs103
Copyright 2008 Oracle