Skip to content

Commit 0bef28e

Browse files
chore: add XML Doc Comments for ITransactionSubscriber
1 parent 7a56711 commit 0bef28e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
namespace EntityDb.Abstractions.Transactions
22
{
33
/// <summary>
4-
///
4+
/// Represents a type that reacts to transactions that have been committed.
55
/// </summary>
66
/// <typeparam name="TEntity"></typeparam>
77
public interface ITransactionSubscriber<TEntity>
88
{
99
/// <summary>
10-
/// Foo
10+
/// Called when a transaction has been committed (or on replay, if used in that way).
1111
/// </summary>
12-
/// <param name="transaction"></param>
12+
/// <param name="transaction">The committed transaction.</param>
1313
void Notify(ITransaction<TEntity> transaction);
1414
}
1515
}

0 commit comments

Comments
 (0)