33 lines
770 B
C#
33 lines
770 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace LANCommander.PlaynitePlugin.Helpers
|
|||
|
{
|
|||
|
internal static class RetryHelper
|
|||
|
{
|
|||
|
internal static T RetryOnException<T>(int maxAttempts, TimeSpan delay, T @default, Func<T> action)
|
|||
|
{
|
|||
|
int attempts = 0;
|
|||
|
|
|||
|
do
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
attempts++;
|
|||
|
return action();
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
if (attempts >= maxAttempts)
|
|||
|
return @default;
|
|||
|
|
|||
|
Task.Delay(delay).Wait();
|
|||
|
}
|
|||
|
} while (true);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|