使用lambda表達式的簡化C#重試邏輯
> 在C#中,重試操作是一項常見的任務。 傳統方法通常涉及明確的重試循環,從而導致冗長和可重複使用的代碼較少。 lambda表達式提供了更優雅的解決方案。這個示例演示了可重複使用的基於lambda的重試包裝器:
<code class="language-csharp">public static class RetryHelper { public static void Execute(Action action, TimeSpan retryInterval, int maxAttempts = 3) { Execute(() => { action(); return null; }, retryInterval, maxAttempts); } public static T Execute<T>(Func<T> action, TimeSpan retryInterval, int maxAttempts = 3) { var exceptions = new List<Exception>(); for (int attempt = 0; attempt < maxAttempts; attempt++) { try { return action(); } catch (Exception ex) { exceptions.Add(ex); if (attempt < maxAttempts - 1) { Thread.Sleep(retryInterval); } } } throw new AggregateException("Retry attempts failed.", exceptions); } }</code>
RetryHelper
>使用很簡單:
對於返回值的方法:
<code class="language-csharp">RetryHelper.Execute(() => SomeMethodThatMightFail(), TimeSpan.FromSeconds(2)); </code>
>可以輕鬆地添加異步超載以進行異步操作。 這種方法為處理C#中的重試邏輯提供了簡潔而可重複的解決方案。
以上是Lambda表達如何簡化C#中的重試邏輯?的詳細內容。更多資訊請關注PHP中文網其他相關文章!