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 Summary
Fields Modifier and Type Field Description static intPOST_BEGINstatic intPOST_ENDstatic intREGISTER_SYNCstatic intRESUMEstatic intSUSPEND
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidUOWEvent(UOWEventEmitter uow, int event, java.lang.Object data)
-
-
-
Field Detail
-
POST_BEGIN
static final int POST_BEGIN
- See Also:
- Constant Field Values
-
POST_END
static final int POST_END
- See Also:
- Constant Field Values
-
SUSPEND
static final int SUSPEND
- See Also:
- Constant Field Values
-
RESUME
static final int RESUME
- See Also:
- Constant Field Values
-
REGISTER_SYNC
static final int REGISTER_SYNC
- See Also:
- Constant Field Values
-
-
Method Detail
-
UOWEvent
void UOWEvent(UOWEventEmitter uow, int event, java.lang.Object data)
- Parameters:
uow- The Unit of work to which this event appliesevent- The event codedata- Data associated with the event
-
-