只要操作失敗,就會實現重試邏輯。實施重試
僅在失敗操作的完整上下文中記錄邏輯。
記錄導致重試的所有連接故障非常重要,以便底層
可以識別應用程序、服務或資源的問題。
示例
class Program{ public static void Main(){ HttpClient client = new HttpClient(); dynamic res = null; var retryAttempts = 3; var delay = TimeSpan.FromSeconds(2); RetryHelper.Retry(retryAttempts, delay, () =>{ res = client.GetAsync("https://example22.com/api/cycles/1"); }); Console.ReadLine(); } } public static class RetryHelper{ public static void Retry(int times, TimeSpan delay, Action operation){ var attempts = 0; do{ try{ attempts++; System.Console.WriteLine(attempts); operation(); break; } catch (Exception ex){ if (attempts == times) throw; Task.Delay(delay).Wait(); } } while (true); } }
登錄后復制
以上就是如何用C#編寫重試邏輯?的詳細內容,更多請關注www.xfxf.net其它相關文章!