We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a56711 commit 0bef28eCopy full SHA for 0bef28e
src/EntityDb.Abstractions/Transactions/ITransactionSubscriber.cs
@@ -1,15 +1,15 @@
1
namespace EntityDb.Abstractions.Transactions
2
{
3
/// <summary>
4
- ///
+ /// Represents a type that reacts to transactions that have been committed.
5
/// </summary>
6
/// <typeparam name="TEntity"></typeparam>
7
public interface ITransactionSubscriber<TEntity>
8
9
10
- /// Foo
+ /// Called when a transaction has been committed (or on replay, if used in that way).
11
12
- /// <param name="transaction"></param>
+ /// <param name="transaction">The committed transaction.</param>
13
void Notify(ITransaction<TEntity> transaction);
14
}
15
0 commit comments