-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathTransactionalMessageSendingDecorator.cs
executable file
·37 lines (34 loc) · 1.45 KB
/
TransactionalMessageSendingDecorator.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 MyCompany.ECommerce.TechnicalStuff.ProcessModel;
namespace MyCompany.ECommerce.TechnicalStuff.Outbox;
public class TransactionalMessageSendingDecorator<TCommand>(
CommandHandler<TCommand> decorated,
TransactionalOutboxes outboxes)
: CommandHandler<TCommand>
where TCommand : struct, Command
{
public async Task Handle(TCommand command)
{
var transaction = Transaction.Current;
if (transaction == null || transaction.TransactionInformation.Status != TransactionStatus.Active)
throw new DesignError($"{GetType().Name} used without active transaction");
await decorated.Handle(command);
await Task.WhenAll(outboxes.ForCurrentUseCase.Select(outbox => outbox.Save()));
}
}
public class TransactionalMessageSendingDecorator<TCommand, TResult>(
CommandHandler<TCommand, TResult> decorated,
TransactionalOutboxes outboxes)
: CommandHandler<TCommand, TResult>
where TCommand : struct, Command
{
public async Task<TResult> Handle(TCommand command)
{
var transaction = Transaction.Current;
if (transaction == null || transaction.TransactionInformation.Status != TransactionStatus.Active)
throw new DesignError($"{GetType().Name} used without active transaction");
var result = await decorated.Handle(command);
await Task.WhenAll(outboxes.ForCurrentUseCase.Select(outbox => outbox.Save()));
return result;
}
}