Package com.ibm.wsspi.tx
Interface UOWEventListener
- 
 public interface UOWEventListenerA service providing this interface will have the UOWEvent method called at various points during the lifecycle of a unit of work.
- 
- 
Field SummaryFields Modifier and Type Field Description static intPOST_BEGINstatic intPOST_ENDstatic intREGISTER_SYNCstatic intRESUMEstatic intSUSPEND
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidUOWEvent(UOWEventEmitter uow, int event, java.lang.Object data)
 
- 
- 
- 
Field Detail- 
POST_BEGINstatic final int POST_BEGIN - See Also:
- Constant Field Values
 
 - 
POST_ENDstatic final int POST_END - See Also:
- Constant Field Values
 
 - 
SUSPENDstatic final int SUSPEND - See Also:
- Constant Field Values
 
 - 
RESUMEstatic final int RESUME - See Also:
- Constant Field Values
 
 - 
REGISTER_SYNCstatic final int REGISTER_SYNC - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
UOWEventvoid UOWEvent(UOWEventEmitter uow, int event, java.lang.Object data) - Parameters:
- uow- The Unit of work to which this event applies
- event- The event code
- data- Data associated with the event
 
 
- 
 
-