Class BridgeSynchronization
java.lang.Object
org.jboss.jbossts.txbridge.outbound.BridgeSynchronization
- All Implemented Interfaces:
jakarta.transaction.Synchronization
Provides method call mapping between JTA parent coordinator and WS-AT subordinate transaction.
- Author:
- jonathan.halliday@redhat.com, 2009-06-01
-
Constructor Summary
ConstructorDescriptionBridgeSynchronization
(org.jboss.jbossts.xts.bridge.at.BridgeWrapper bridgeWrapper) -
Method Summary
Modifier and TypeMethodDescriptionvoid
afterCompletion
(int status) This method is called by the transaction manager after the transaction is committed or rolled back.void
The beforeCompletion method is called by the transaction manager prior to the start of the two-phase transaction commit process.
-
Constructor Details
-
BridgeSynchronization
public BridgeSynchronization(org.jboss.jbossts.xts.bridge.at.BridgeWrapper bridgeWrapper)
-
-
Method Details
-
beforeCompletion
public void beforeCompletion()The beforeCompletion method is called by the transaction manager prior to the start of the two-phase transaction commit process.- Specified by:
beforeCompletion
in interfacejakarta.transaction.Synchronization
-
afterCompletion
public void afterCompletion(int status) This method is called by the transaction manager after the transaction is committed or rolled back.- Specified by:
afterCompletion
in interfacejakarta.transaction.Synchronization
- Parameters:
status
- the jakarta.transaction.Status representing the tx outcome.
-