#include <it_bus/transaction_manager.h>
Inheritance diagram for IT_Bus::TransactionManager:
This interface is used to perform actions such as thread attachment/detachment, transaction expiry/timeout specification, transaction participant/notification enlistment etc.
As with the TransactionSystem interface, where appropiate calls made to a TransactionManager operate on the transaction associated with the calling thread.
Definition at line 27 of file transaction_manager.h.
Public Member Functions | |
virtual TransactionIdentifier * | detach_thread ()=0 |
Break the association between the calling thread and its current transaction. | |
virtual Boolean | attach_thread (TransactionIdentifier *tx_identifier)=0 |
Make an association between the calling thread and the transaction identified by the 'tx_identifier' parameter. | |
virtual String | get_transaction_type ()=0 |
Get the underlying transaction type. | |
virtual TransactionIdentifier * | get_tx_identifier ()=0 |
An identifier for the transaction associated with the calling thread. | |
virtual void | set_transaction_timeout (UInt seconds)=0 throw ((Exception)) |
Set the timeout within which transactions must be completed. | |
virtual UInt | get_transaction_timeout ()=0 throw ((Exception)) |
Get the timeout within which transactions must be completed. | |
virtual Boolean | enlist (TransactionParticipant *tx_participant, Boolean is_durable)=0 |
Enlist a participant in the transaction associated with the current thread. | |
virtual Boolean | enlist_for_notification (TransactionNotificationHandler *completion_handler)=0 throw ((Exception)) |
Enlist a participant for notification events. | |
virtual Boolean | commit_transaction (Boolean report_heuristics)=0 throw ((Exception)) |
Marks the successful end of a transactional unit of work. | |
virtual void | rollback_transaction ()=0 throw ((Exception)) |
Marks the unsuccessful end of a transaction unit of work. | |
virtual void | include_tx_identifier (TransactionIdentifierMap &tx_map)=0 |
Add the transaction identifier for this specific transaction system to the supplied identifier Map. | |
virtual Boolean | recreate_transaction (String &encoded_transaction_state)=0 |
Recreate a pre-existing transaction based on its encoded state. | |
virtual String | get_encoded_transaction_state ()=0 |
Obtain an encoded form of the transaction currently associated with the current thread. |
|
Make an association between the calling thread and the transaction identified by the 'tx_identifier' parameter. This operation may be used to associate multiple threads with a newly created or pre-existing transaction.
|
|
Marks the successful end of a transactional unit of work. This operates on the transaction associated with the calling thread. Any enlisted transaction participants will be requested to commit. Any enlisted notification participants will be informed of the outcome of the commit action.
|
|
Break the association between the calling thread and its current transaction. This means that the transaction context will not be propagated on subsequent operation calls made by the calling thread. Normal transaction processing such as termination may still proceed on other threads. To re-attach the calling thread to this transaction the attach_thread() operation should be used. A transaction may be detached from one thread, and later attached to a different thread.
|
|
Enlist a participant in the transaction associated with the current thread. If there is no transactions associated with the current thread, then this participant will be enlisted as soon as a transaction is associated with this thread.
|
|
Enlist a participant for notification events. Whenever a transactional event occurs, registered handlers will receive the appropriate notification.
|
|
Obtain an encoded form of the transaction currently associated with the current thread. If there is no transaction associated with the current thread then an empty String is returned.
|
|
Get the timeout within which transactions must be completed.
|
|
Get the underlying transaction type.
|
|
An identifier for the transaction associated with the calling thread. This identifier may be used to create an affinity between another thread and this transaction instance. That is, more than one thread can be making calls in the context of the same transaction. If there are multiple transaction systems active on this thread, then the returned Identifier will include details of those transactions as well.
|
|
Add the transaction identifier for this specific transaction system to the supplied identifier Map. If an identifier for this transaction system is already present in this map, then do nothing.
|
|
Recreate a pre-existing transaction based on its encoded state. If there isd already a transaction active on the current thread then this operation does nothing and returns 'false'. If there is no transaction active on the current thread, then the thread is associated with the newly recreated transaction whoose state is encapsulated in the String input parameter.
|
|
Marks the unsuccessful end of a transaction unit of work. This operates on the transaction associated with the calling thread. This operation causes the entire transaction to be aborted, Any enlisted transaction participants will be instructed to rollback their state to a pre-transaction position. Any enlisted notification participants will be informed that the transaction has been aborted. |
|
Set the timeout within which transactions must be completed. If the timeout expires, the transaction is automatically aborted. This operation should be called before a transaction is initiated.
|