-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathExplicitTransactionDecorator.cs
48 lines (45 loc) · 1.29 KB
/
ExplicitTransactionDecorator.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
using JetBrains.Annotations;
using MyCompany.ECommerce.TechnicalStuff.Persistence;
using MyCompany.ECommerce.TechnicalStuff.ProcessModel;
namespace MyCompany.ECommerce.TechnicalStuff.Transactions;
[PublicAPI]
public class ExplicitTransactionDecorator<TCommand>(CommandHandler<TCommand> decorated, MainDb db)
: CommandHandler<TCommand>
where TCommand : struct, Command
{
public async Task Handle(TCommand command)
{
await db.BeginTransaction();
try
{
await decorated.Handle(command);
await db.CommitCurrentTransaction();
}
catch (Exception)
{
await db.RollbackCurrentTransaction();
throw;
}
}
}
[PublicAPI]
public class ExplicitTransactionDecorator<TCommand, TResult>(CommandHandler<TCommand, TResult> decorated, MainDb db)
: CommandHandler<TCommand, TResult>
where TCommand : struct, Command
{
public async Task<TResult> Handle(TCommand command)
{
await db.BeginTransaction();
try
{
var result = await decorated.Handle(command);
await db.CommitCurrentTransaction();
return result;
}
catch (Exception)
{
await db.RollbackCurrentTransaction();
throw;
}
}
}