gpt4 book ai didi

c# - Polly 在 X 次重试后继续

转载 作者:行者123 更新时间:2023-11-30 23:25:51 30 4
gpt4 key购买 nike

我在 Xamarin 项目中使用 Polly,效果非常好。我面临的问题是,在重试 2 次后,它应该继续该方法,但由于某种原因,它卡住了并不断重试。有谁知道我该怎么做?

private async Task<List<EventDto>> GetEventsErrorRemoteAsync()
{
List<EventDto> conferences = null;

if (CrossConnectivity.Current.IsConnected)
{
// Retrying a specific amount of times (5)
// In this case will wait for
// 1 ^ 2 = 2 seconds then
// 2 ^ 2 = 4 seconds then
// 3 ^ 2 = 8 seconds then
// 4 ^ 2 = 16 seconds then
// 5 ^ 2 = 32 seconds
conferences = await Policy
.Handle<Exception>()
.WaitAndRetryAsync(
retryCount: 2,
sleepDurationProvider:retryAttempt =>
TimeSpan.FromSeconds(Math.Pow (2, retryAttempt)),
onRetry: (exception, timeSpan, context) =>
{
var ex = (ApiException)exception;

//Do something with exception. Send to insights (now hockeyapp)
Debug.WriteLine($"Error: {ex.ReasonPhrase} |
TimeSpan: {timeSpan.Seconds}");
return;
}).ExecuteAsync(async () =>
await _eventService.GetEventsWithError());
}
return conferences;
}

最佳答案

在相同的 Github 问题上详细回答了问题:https://github.com/App-vNext/Polly/issues/106

政策没有卡住,一直在重试。相反,如果重试策略在 .ExecuteAsync() 中执行委托(delegate)时所做的最终尝试仍然抛出,则重试策略将重新抛出此最终异常。由于您没有捕获和处理该异常,该方法自然不会继续返回语句。

关于c# - Polly 在 X 次重试后继续,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37092589/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com