Package com.ibm.wsspi.tx
Interface UOWEventListener
-
public interface UOWEventListener
A 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 int
POST_BEGIN
static int
POST_END
static int
REGISTER_SYNC
static int
RESUME
static int
SUSPEND
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
UOWEvent(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
-
-