-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathExecutionStrategy.cs
45 lines (39 loc) · 1.75 KB
/
ExecutionStrategy.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
namespace Masa.Contrib.Dispatcher.Events.Strategies;
public class ExecutionStrategy : IExecutionStrategy
{
private readonly ILogger<ExecutionStrategy>? _logger;
public ExecutionStrategy(ILogger<ExecutionStrategy>? logger = null) => _logger = logger;
public async Task ExecuteAsync<TEvent>(StrategyOptions strategyOptions, TEvent @event, Func<TEvent, Task> func, Func<TEvent, Exception, FailureLevels, Task> cancel)
where TEvent : IEvent
{
int retryTimes = 0;
Exception exception = null!;
while (strategyOptions.IsRetry(retryTimes))
{
try
{
if (retryTimes > 0)
{
_logger?.LogWarning("----- Error Publishing event {@Event} start: The {retries}th retrying consume a message failed. message id: {messageId} -----", @event, retryTimes, @event.Id);
}
await func.Invoke(@event);
return;
}
catch (Exception ex)
{
if (retryTimes > 0)
{
_logger?.LogError(ex, "----- Error Publishing event {@Event} finish: The {retries}th retrying consume a message failed. message id: {messageId} -----", @event, retryTimes, @event.Id);
}
else
{
_logger?.LogError(ex, "----- Error Publishing event {@Event}: after {maxRetries}th executions and we will stop retrying. message id: {messageId} -----", @event, strategyOptions.MaxRetryCount, @event.Id);
}
exception = ex;
retryTimes++;
}
}
//perform the cancel handler
await cancel(@event, exception, strategyOptions.FailureLevels);
}
}