Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DurableInternalEnlistment.cs
Go to the documentation of this file.
1namespace System.Transactions;
2
4{
6
8
9 internal DurableInternalEnlistment(Enlistment enlistment, Guid resourceManagerIdentifier, InternalTransaction transaction, IEnlistmentNotification twoPhaseNotifications, ISinglePhaseNotification singlePhaseNotifications, Transaction atomicTransaction)
10 : base(enlistment, transaction, twoPhaseNotifications, singlePhaseNotifications, atomicTransaction)
11 {
12 _resourceManagerIdentifier = resourceManagerIdentifier;
13 }
14
15 protected DurableInternalEnlistment(Enlistment enlistment, IEnlistmentNotification twoPhaseNotifications)
16 : base(enlistment, twoPhaseNotifications)
17 {
18 }
19}
DurableInternalEnlistment(Enlistment enlistment, IEnlistmentNotification twoPhaseNotifications)
DurableInternalEnlistment(Enlistment enlistment, Guid resourceManagerIdentifier, InternalTransaction transaction, IEnlistmentNotification twoPhaseNotifications, ISinglePhaseNotification singlePhaseNotifications, Transaction atomicTransaction)