IPromotableSinglePhaseNotification Interface
Describes an object that acts as a commit delegate for a non-distributed transaction internal to a resource manager.
Assembly: System.Transactions (in System.Transactions.dll)
The IPromotableSinglePhaseNotification type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Initialize | Notifies a transaction participant that enlistment has completed successfully. |
![]() | Promote | Notifies an enlisted object that an escalation of the delegated transaction has been requested. (Inherited from ITransactionPromoter.) |
![]() | Rollback | Notifies an enlisted object that the transaction is being rolled back. |
![]() | SinglePhaseCommit | Notifies an enlisted object that the transaction is being committed. |
Promotable Enlistments (PSPE) allow a resource, such as a database, to take ownership of the transaction if it is the only entity participating in the transaction. Later, if needed, the System.Transactions infrastructure can still escalate the transaction to MSDTC. For more information, see Optimization Using Single Phase Commit and Promotable Single Phase Notification.
A resource manager that implements this interface delegates control of the commit of it's internal non-distributed transaction to an enlistment on a System.Transactions transaction through the EnlistPromotableSinglePhase method on the Transaction class.
If the ITransactionPromoter::Promote method is called, your implementation of this interface must produce a distributed transaction in the form of a propagation token, and return it to System.Transactions.
After you enlist an object that implements this interface as a participant of a transaction using the EnlistPromotableSinglePhase method, the transaction manager then notifies the participant when the transaction is promoted, committed, or rolled back by invoking the Promote method, the SinglePhaseCommit method, or the Rollback method of the object.
For more information, see Optimization Using Single Phase Commit and Promotable Single Phase Notification.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
