Files
ntwain/NTwain/Internals/ICommittable.cs

17 lines
414 B
C#
Raw Normal View History

2014-04-20 16:57:38 -04: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-20 16:57:38 -04:00
interface ICommittable : IDisposable
{
/// <summary>
/// Commits the pending changes.
/// </summary>
2014-04-20 16:57:38 -04:00
void Commit();
}
}