Package com.ibm.wsspi.uow
Interface ExtendedUOWAction
-
public interface ExtendedUOWAction
A piece of logic to be performed under a particular type of unit of work. The work is performed by invokingUOWManager.runUnderUOW
and providing this action as a parameter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
run()
Invoked as a result of an invocation ofUOWManager.runUnderUOW
once the requested UOW has been established on the thread.
-
-
-
Method Detail
-
run
java.lang.Object run() throws java.lang.Exception
Invoked as a result of an invocation ofUOWManager.runUnderUOW
once the requested UOW has been established on the thread.- Throws:
java.lang.Exception
- See Also:
UOWManager.runUnderUOW(int, boolean, ExtendedUOWAction, Class[], Class[])
-
-