-
Notifications
You must be signed in to change notification settings - Fork 30
/
AmbientTransactionDecorator.cs
executable file
·37 lines (34 loc) · 1.28 KB
/
AmbientTransactionDecorator.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
using System.Transactions;
using JetBrains.Annotations;
using MyCompany.ECommerce.TechnicalStuff.ProcessModel;
namespace MyCompany.ECommerce.TechnicalStuff.Transactions;
[PublicAPI]
public class AmbientTransactionDecorator<TCommand>(CommandHandler<TCommand> decorated) : CommandHandler<TCommand>
where TCommand : struct, Command
{
public async Task Handle(TCommand command)
{
using var scope = new TransactionScope(
TransactionScopeOption.RequiresNew,
new TransactionOptions {IsolationLevel = IsolationLevel.ReadCommitted},
TransactionScopeAsyncFlowOption.Enabled);
await decorated.Handle(command);
scope.Complete();
}
}
[PublicAPI]
public class AmbientTransactionDecorator<TCommand, TResult>(CommandHandler<TCommand, TResult> decorated)
: CommandHandler<TCommand, TResult>
where TCommand : struct, Command
{
public async Task<TResult> Handle(TCommand command)
{
using var scope = new TransactionScope(
TransactionScopeOption.RequiresNew,
new TransactionOptions {IsolationLevel = IsolationLevel.ReadCommitted},
TransactionScopeAsyncFlowOption.Enabled);
var result = await decorated.Handle(command);
scope.Complete();
return result;
}
}