// // IPromotableSinglePhaseNotification.cs // // Author: // Atsushi Enomoto // // (C)2005 Novell Inc, // #if NET_2_0 namespace System.Transactions { public interface IPromotableSinglePhaseNotification : ITransactionPromoter { void Initialize (); void Rollback (SinglePhaseEnlistment enlistment); void SinglePhaseCommit (SinglePhaseEnlistment enlistment); } } #endif