forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathITransaction.cs
56 lines (51 loc) · 1.86 KB
/
ITransaction.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using System;
using System.Data;
namespace NHibernate
{
/// <summary>
/// Allows the application to define units of work, while maintaining abstraction from the
/// underlying transaction implementation
/// </summary>
/// <remarks>
/// A transaction is associated with a <c>ISession</c> and is usually instanciated by a call to
/// <c>ISession.BeginTransaction()</c>. A single session might span multiple transactions since
/// the notion of a session (a conversation between the application and the datastore) is of
/// coarser granularity than the notion of a transaction. However, it is intended that there be
/// at most one uncommitted <c>ITransaction</c> associated with a particular <c>ISession</c>
/// at a time. Implementors are not intended to be threadsafe.
/// </remarks>
public interface ITransaction : IDisposable
{
/// <summary>
/// Flush the associated <c>ISession</c> and end the unit of work.
/// </summary>
/// <remarks>
/// This method will commit the underlying transaction if and only if the transaction
/// was initiated by this object.
/// </remarks>
void Commit();
/// <summary>
/// Force the underlying transaction to roll back.
/// </summary>
void Rollback();
/// <summary>
/// Was the transaction rolled back or set to rollback only?
/// </summary>
bool WasRolledBack { get; }
/// <summary>
/// Was the transaction successfully committed?
/// </summary>
/// <remarks>
/// This method could return <c>false</c> even after successful invocation of <c>Commit()</c>
/// </remarks>
bool WasCommitted { get; }
/// <summary>
/// Enlist the <see cref="IDbCommand"/> in the current Transaction.
/// </summary>
/// <param name="command">The <see cref="IDbCommand"/> to enlist.</param>
/// <remarks>
/// It is okay for this to be a no op implementation.
/// </remarks>
void Enlist( IDbCommand command );
}
}