CosTransactions_Coordinator
This module implements the OMG CosTransactions::Coordinator interface.
- Provided by: erlang-manpages (Version: 1:18.3-dfsg-1ubuntu3.1)
- Source: erlang
- Report a bug
This module implements the OMG CosTransactions::Coordinator interface.
To get access to the record definitions for the structures use:
-include_lib("cosTransactions/include/CosTransactions.hrl").
create_subtransaction(Coordinator) -> Control
Types:
A new subtransaction is created whose parent is the Coordinator argument.
Raises exception:
get_transaction_name(Coordinator) -> Name
Types:
Returns a printable string, which describe the transaction. The main purpose is to support debugging.
get_parent_status(Coordinator) -> Status
Types:
Returns the status of the parent transaction associated with the target object. If the target object is a top-level transaction this operation is equivalent to get_status/1 operation.
Possible Status replies:
get_status(Coordinator) -> Status
Types:
Returns the status of the transaction associated with the target object.
get_top_level_status(Coordinator) -> Status
Types:
Returns the status of the top-level transaction associated with the target object.
hash_top_level_tran(Coordinator) -> Return
Types:
Returns a hash code for the top-level transaction associated with the target object. Equals the operation hash_transaction/1 if the target object is a top-level transaction.
hash_transaction(Coordinator) -> Return
Types:
Returns a hash code for the transaction associated with the target object.
is_descendant_transaction(Coordinator, OtherCoordinator) ->
Return
Types:
Returns true if the transaction associated with the target object is a descendant of the transaction associated with the parameter object.
is_same_transaction(Coordinator, OtherCoordinator) ->
Return
Types:
Returns true if the transaction associated with the target object is related to the transaction associated with the parameter object.
is_top_level_transaction(Coordinator) -> Return
Types:
Returns true if the transaction associated with the target object is a top-level transaction.
register_resource(Coordinator, Resource) ->
RecoveryCoordinator
Types:
This operation registers the parameter Resource object as a participant in the transaction associated with the target object. The RecoveryCoordinator returned by this operation can be used by this Resource during recovery.
Raises exception:
register_subtran_aware(Coordinator,
SubtransactionAwareResource) -> Return
Types:
This operation registers the parameter SubtransactionAwareResource object such that it will be notified when the transaction, associated wit the target object, has committed or rolled back.
rollback_only(Coordinator) -> Return
Types:
The transaction associated with the target object is modified so the only possible outcome is to rollback the transaction.