摘要: (一)Policy知识体系图(二)代码案例分析(1)Retry()函数public static int TestRetry(){ int b = 0; var policy = Policy.Handle().Retry(3, (ex, i) => { Console.WriteLine($"Retry:{i} 异常信息:{ex.Message}"); }); ... 阅读全文
posted @ 2020-09-15 14:57 李华丽 阅读(841) 评论(0) 推荐(0) 编辑
AmazingCounters.com