私は非常にうまく機能する 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;
}