-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathIRetryTask.cs
65 lines (58 loc) · 2.46 KB
/
IRetryTask.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
using System;
using System.Threading.Tasks;
namespace WebApiClientCore
{
/// <summary>
/// 定义重试的行为
/// </summary>
/// <typeparam name="TResult"></typeparam>
public interface IRetryTask<TResult> : ITask<TResult>
{
/// <summary>
/// 当捕获到异常时进行Retry
/// </summary>
/// <typeparam name="TException">异常类型</typeparam>
/// <returns></returns>
IRetryTask<TResult> WhenCatch<TException>() where TException : Exception;
/// <summary>
/// 当捕获到异常时进行Retry
/// </summary>
/// <typeparam name="TException">异常类型</typeparam>
/// <param name="handler">捕获到指定异常时</param>
/// <returns></returns>
IRetryTask<TResult> WhenCatch<TException>(Action<TException> handler) where TException : Exception;
/// <summary>
/// 当捕获到异常时进行Retry
/// </summary>
/// <typeparam name="TException">异常类型</typeparam>
/// <param name="predicate">返回true才Retry</param>
/// <returns></returns>
IRetryTask<TResult> WhenCatch<TException>(Func<TException, bool> predicate) where TException : Exception;
/// <summary>
/// 当捕获到异常时进行Retry
/// </summary>
/// <typeparam name="TException">异常类型</typeparam>
/// <param name="handler">捕获到指定异常时</param>
/// <returns></returns>
IRetryTask<TResult> WhenCatchAsync<TException>(Func<TException, Task> handler) where TException : Exception;
/// <summary>
/// 当捕获到异常时进行Retry
/// </summary>
/// <typeparam name="TException">异常类型</typeparam>
/// <param name="predicate">返回true才Retry</param>
/// <returns></returns>
IRetryTask<TResult> WhenCatchAsync<TException>(Func<TException, Task<bool>> predicate) where TException : Exception;
/// <summary>
/// 当结果符合条件时进行Retry
/// </summary>
/// <param name="predicate">条件</param>
/// <returns></returns>
IRetryTask<TResult> WhenResult(Func<TResult, bool> predicate);
/// <summary>
/// 当结果符合条件时进行Retry
/// </summary>
/// <param name="predicate">条件</param>
/// <returns></returns>
IRetryTask<TResult> WhenResultAsync(Func<TResult, Task<bool>> predicate);
}
}