23 lines
406 B
C#
23 lines
406 B
C#
//
|
|
// IPromotableSinglePhaseNotification.cs
|
|
//
|
|
// Author:
|
|
// Atsushi Enomoto <atsushi@ximian.com>
|
|
//
|
|
// (C)2005 Novell Inc,
|
|
//
|
|
|
|
|
|
namespace System.Transactions
|
|
{
|
|
public interface IPromotableSinglePhaseNotification : ITransactionPromoter
|
|
{
|
|
void Initialize ();
|
|
|
|
void Rollback (SinglePhaseEnlistment singlePhaseEnlistment);
|
|
|
|
void SinglePhaseCommit (SinglePhaseEnlistment singlePhaseEnlistment);
|
|
}
|
|
}
|
|
|