Relativity.DataExchange.Io.RetryExceptionHelper
Defines commonly used static retry helper functions to decide whether an exception should be retried.
namespace Relativity.DataExchange.Io
{
internal static class RetryExceptionHelper
{
public static Func<Exception, bool> CreateRetryPredicate(RetryOptions options);
public static bool IsRetryable(Exception exception, RetryOptions options);
}
}