-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathNonTransactionalMessageSendingDecorator.cs
executable file
·37 lines (34 loc) · 1.48 KB
/
NonTransactionalMessageSendingDecorator.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 NonTransactionalMessageSendingDecorator<TCommand>(
CommandHandler<TCommand> decorated,
NonTransactionalOutboxes outboxes)
: CommandHandler<TCommand>
where TCommand : struct, Command
{
public async Task Handle(TCommand command)
{
await decorated.Handle(command);
var transaction = Transaction.Current;
if (transaction != null && transaction.TransactionInformation.Status != TransactionStatus.Committed)
throw new DesignError($"{GetType().Name} used within uncommitted transaction");
await Task.WhenAll(outboxes.ForCurrentUseCase.Select(outbox => outbox.Send()));
}
}
public class NonTransactionalMessageSendingDecorator<TCommand, TResult>(
CommandHandler<TCommand, TResult> decorated,
NonTransactionalOutboxes outboxes)
: CommandHandler<TCommand, TResult>
where TCommand : struct, Command
{
public async Task<TResult> Handle(TCommand command)
{
var result = await decorated.Handle(command);
var transaction = Transaction.Current;
if (transaction != null && transaction.TransactionInformation.Status != TransactionStatus.Committed)
throw new DesignError($"{GetType().Name} used within uncommitted transaction");
await Task.WhenAll(outboxes.ForCurrentUseCase.Select(outbox => outbox.Send()));
return result;
}
}