You've already forked linux-packaging-mono
20 lines
304 B
C#
20 lines
304 B
C#
//
|
|
// ISinglePhaseNotification.cs
|
|
//
|
|
// Author:
|
|
// Atsushi Enomoto <atsushi@ximian.com>
|
|
//
|
|
// (C)2005 Novell Inc,
|
|
//
|
|
|
|
|
|
namespace System.Transactions
|
|
{
|
|
public interface ISinglePhaseNotification
|
|
: IEnlistmentNotification
|
|
{
|
|
void SinglePhaseCommit (SinglePhaseEnlistment singlePhaseEnlistment);
|
|
}
|
|
}
|
|
|