#include <it_bus/transaction_system.h>
Inheritance diagram for IT_Bus::TransactionSystem:
A Transaction is associated with a calling thread when the IT_Bus::TransactionSystem::begin_transaction() or IT_Bus::TransactionManager::attach_thread() operations are called. Subsequent transactional operation calls affect the transaction associated with the calling thread.
Definition at line 23 of file transaction_system.h.
Public Member Functions | |
virtual void | begin_transaction ()=0 throw ((Exception)) |
Marks the beginning of a transactional unit of work. | |
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 TransactionManager & | get_transaction_manager (const String &tx_manager_type=DEFAULT_TRANSACTION_TYPE)=0 throw ((Exception)) |
Return an interface that allows more detailed interaction with the transaction associated with the calling thread. | |
virtual Boolean | within_transaction ()=0 |
Determine if a transaction is currently associated with the calling thread. | |
virtual TransactionParticipant * | get_interposition_participant ()=0 |
INTERNAL: This operation should not be called from user code. | |
Static Public Attributes | |
const String | DEFAULT_TRANSACTION_TYPE |
String constants for the set of supported transaction manager types. |
|
Marks the beginning of a transactional unit of work. Where appropriate, all subsequent operation calls made by this thread will contain a propagated Transaction context. If an operation call goes outside of this Bus, for example to a remote webservice, then the transaction context will be propagated remotely to that web service. Each thread may have a separate transaction associated with it. Multiple threads may be associated with the same transaction. See IT_Bus::TransactionManager::attach_thread() for more details of thread/transaction affinity. Code that wishes to interact with this transaction for non-demarcation related activities should use the TransactionManager interface returned by calling get_transaction_manager() on the TransactionSystem interface.
|
|
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.
|
|
Return an interface that allows more detailed interaction with the transaction associated with the calling thread. If a provider for the requested transactoin manager type cannot be loaded, an TransactionSystemUnavailableException will be raised. The currently active transaction manager can be obtained by passing DEFAULT_TRANSACTION_TYPE as the parameter to this operation. See the IT_Bus::TransactionManager interface for more information on available operations.
|
|
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.
|
|
Determine if a transaction is currently associated with the calling thread.
|