ntwain/src/NTwain/Internals/ICommittable.cs

17 lines
414 B
C#
Raw Normal View History

2014-04-21 04:57:38 +08:00
using System;
namespace NTwain.Internals
{
/// <summary>
/// For something that is in a pending state until finalized with a Commit() call.
/// The changes are rolled back if it is disposed without being committed.
/// </summary>
2014-04-21 04:57:38 +08:00
interface ICommittable : IDisposable
{
/// <summary>
/// Commits the pending changes.
/// </summary>
2014-04-21 04:57:38 +08:00
void Commit();
}
}