forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathITransaction.cs
80 lines (70 loc) · 2.59 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
using System;
using System.Data;
using NHibernate.Transaction;
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>
/// Begin the transaction with the default isolation level.
/// </summary>
void Begin();
/// <summary>
/// Begin the transaction with the specified isolation level.
/// </summary>
/// <param name="isolationLevel">Isolation level of the transaction</param>
void Begin(IsolationLevel isolationLevel);
/// <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>
/// Is the transaction in progress
/// </summary>
bool IsActive { get; }
/// <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 <see langword="false" /> 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);
/// <summary>
/// Register a user synchronization callback for this transaction.
/// </summary>
/// <param name="synchronization">The <see cref="ISynchronization"/> callback to register.</param>
void RegisterSynchronization(ISynchronization synchronization);
}
}