Package com.ibm.websphere.jtaextensions
Interface ExtendedJTATransaction
public interface ExtendedJTATransaction
A WebSphere programming model extension to the J2EE JTA support. An
object implementing this interface will be bound, by WebSphere J2EE
containers that support this interface, at
java:comp/websphere/ExtendedJTATransaction
.
Access to this object, when
called from an EJB container, is not restricted to BMTs.-
Method Summary
Modifier and TypeMethodDescriptionbyte[]
Returns theCosTransactions::PropagationContext::TransIdentity::tid
for the transaction currently associated with the calling thread.int
Returns a process-unique identifier for the transaction currently associated with the calling thread.void
Register a SynchronizationCallbackSynchronizationCallback
object with the transaction manager.void
Deprecated.This method is deprecated in favor of registerInterposedSynchronization on jakarta.transaction.TransactionSynchronizationRegistry.void
Unregister a previously registeredSynchronizationCallback
object,sync
.
-
Method Details
-
getGlobalId
byte[] getGlobalId()Returns theCosTransactions::PropagationContext::TransIdentity::tid
for the transaction currently associated with the calling thread.- Returns:
- the current transaction
tid
in the form of a byte array. If there is no active transaction currently associated with the thread, returns null;
-
getLocalId
int getLocalId()Returns a process-unique identifier for the transaction currently associated with the calling thread. The local-id is valid only within the local process. The local-id is recovered as part of the state of a recovered transaction.- Returns:
- an integer that uniquely identifies the current transaction within the calling process. If there is no active transaction currently associated with the thread, returns 0;
-
registerSynchronizationCallback
Register a SynchronizationCallbackSynchronizationCallback
object with the transaction manager. The registeredsync
receives notification of the completion of each transaction mediated by the transaction manager in the local JVM.- Parameters:
sync
- An object implementing theSynchronizationCallback
interface.- Throws:
NotSupportedException
- Thrown if this method is called from an environment or at a time when the function is not available.
-
registerSynchronizationCallbackForCurrentTran
void registerSynchronizationCallbackForCurrentTran(SynchronizationCallback sync) throws NotSupportedException Deprecated.This method is deprecated in favor of registerInterposedSynchronization on jakarta.transaction.TransactionSynchronizationRegistry.Register a SynchronizationCallbackSynchronizationCallback
object for the current transaction. The registeredsync
receives notification of the completion of the transaction in which it is registered.- Parameters:
sync
- An object implementing theSynchronizationCallback
interface.- Throws:
NotSupportedException
- Thrown if this method is called from an environment or at a time when the function is not available.
-
unRegisterSynchronizationCallback
void unRegisterSynchronizationCallback(SynchronizationCallback sync) throws CallbackNotRegisteredException Unregister a previously registeredSynchronizationCallback
object,sync
. The object so unregistered will receive no further callbacks from transactions that subsequently complete.- Parameters:
sync
- A previously registeredSynchronizationCallback
object.- Throws:
CallbackNotRegisteredException
- Thrown if the specificsync
is not registered with the transaction manager.
-