java.lang.Object
java.util.EventObject
jakarta.resource.spi.work.WorkEvent
- All Implemented Interfaces:
 Serializable
This class models the various events that occur during the processing of
 a 
Work instance.- Version:
 - 1.0
 - See Also:
 
- 
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIndicatesWorkinstance has been accepted.static final intIndicatesWorkinstance has completed execution.static final intIndicatesWorkinstance has been rejected.static final intIndicatesWorkinstance has started execution.Fields inherited from class java.util.EventObject
source - 
Constructor Summary
ConstructorsConstructorDescriptionWorkEvent(Object source, int type, Work work, WorkException exc) Constructor.WorkEvent(Object source, int type, Work work, WorkException exc, long startDuration) Constructor. - 
Method Summary
Methods inherited from class java.util.EventObject
getSource, toString 
- 
Field Details
- 
WORK_ACCEPTED
public static final int WORK_ACCEPTEDIndicatesWorkinstance has been accepted.- See Also:
 
 - 
WORK_REJECTED
public static final int WORK_REJECTEDIndicatesWorkinstance has been rejected.- See Also:
 
 - 
WORK_STARTED
public static final int WORK_STARTEDIndicatesWorkinstance has started execution.- See Also:
 
 - 
WORK_COMPLETED
public static final int WORK_COMPLETEDIndicatesWorkinstance has completed execution.- See Also:
 
 
 - 
 - 
Constructor Details
- 
WorkEvent
Constructor.- Parameters:
 source- The object on which the event initially occurred.type- The event type.work- TheWorkobject on which the event occured.exc- The exception that occured duringWorkprocessing.
 - 
WorkEvent
Constructor.- Parameters:
 source- The object on which the event initially occurred.type- The event type.work- TheWorkobject on which the event occured.exc- The exception that occured duringWorkprocessing.startDuration- The start delay duration (in milliseconds).
 
 - 
 - 
Method Details
- 
getType
public int getType()Return the type of this event.- Returns:
 - the event type.
 
 - 
getWork
Return theWorkinstance which is the cause of the event.- Returns:
 - the 
Workinstance. 
 - 
getStartDuration
public long getStartDuration()Return the start interval duration.- Returns:
 - the time elapsed (in milliseconds) since the 
Workwas accepted, until theWorkexecution started. Note, this does not offer real-time guarantees. It is valid to return -1, if the actual start interval duration is unknown. 
 - 
getException
Return theWorkException. The actualWorkExceptionsubtype returned depends on the type of the event.- Returns:
 - a 
WorkRejectedExceptionor aWorkCompletedException, if any. 
 
 -