Skip to content

Commit 2e6656a

Browse files
author
ye tao
committed
feat: Support stopping the retry flow
0 parents  commit 2e6656a

11 files changed

+8224
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/node_modules
2+
/coverage

README.md

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
# RetryFlow
2+
3+
`RetryFlow` is functional and chainable retry utility!
4+
5+
You can easily chain method calls to set up your retry configuration in a clean and functional manner.
6+
7+
8+
## Features
9+
10+
- ⛓️ **Functional Chain Invoke:** Configure the retry parameters using a fluent and functional chain.
11+
- 🦸 **Retry Types:** Choose between two retry types: by a maximum number of retries or a maximum duration.
12+
- ♨️ **Interval Control:** Set the interval between retries.
13+
-**Timeout:** Define a timeout for the entire retry process.
14+
- 🛂 **Result Validation:** Support customize validation to check if the result of the callback can be resolved.
15+
16+
## Installation
17+
18+
To install RetryFlow, you can use npm or yarn:
19+
20+
```bash
21+
npm install retry-flow
22+
# or
23+
yarn add retry-flow
24+
```
25+
26+
## API Reference
27+
28+
| API | Argument Type | Description |
29+
| -------------------------- | -------------------------------- | ------------------------------------------------------------------------------------------------- |
30+
| `func(callback)` | `Function` | Accepts a callback function to be retried. |
31+
| `interval(ms)` | `number` | Sets the time interval between retry attempts (in milliseconds). |
32+
| `timeout(ms)` | `number` | Sets the maximum time to wait for a successful operation (in milliseconds). |
33+
| `retryTimes(times)` | `number` | Configures the maximum number of retry attempts. |
34+
| `retryDuration(duration)` | `number` | Configures the maximum duration for retrying an operation (in milliseconds). |
35+
| `checkPass(callback)` | `Function` | Specifies a custom result check function. |
36+
| `wait(interval)` | `number` | A utility function that creates a pause for a specified time interval (in milliseconds). |
37+
| `start()` | None | Initiates the retry operation based on the configured settings. Returns a promise of the result. |
38+
39+
40+
### Example
41+
Retry with duration:
42+
```js
43+
44+
const fn = () => {}; // Function you need retry.
45+
46+
const retry = new RetryFlow()
47+
.func(fn)
48+
.timeout(5000) // Each invoke timeout.
49+
.interval(5000) // Retry interval for 5 seconds.
50+
.retryDuration(60000) // Retry for up to 60 seconds
51+
.checkPass((result) => {
52+
// Custom result check logic
53+
return result.statusCode === 200;
54+
});
55+
56+
retry.start()
57+
.then((result) => {
58+
console.log('fn succeeded:', result);
59+
})
60+
.catch((err) => {
61+
console.log('fn failed:', err);
62+
})
63+
64+
```
65+
66+
Retry with max times:
67+
```js
68+
69+
const fn = () => {}; // Function you need retry.
70+
71+
const retry = new RetryFlow()
72+
.func(fn)
73+
.timeout(5000) // Each invoke timeout.
74+
.interval(3000) // Retry interval for 3 seconds.
75+
.retryTimes(3) // Retry up to 3 times.
76+
.checkPass((result) => {
77+
// Custom result check logic
78+
return result.statusCode === 200;
79+
});
80+
81+
retry.start()
82+
.then((result) => {
83+
console.log('fn succeeded:', result);
84+
})
85+
.catch((err) => {
86+
console.log('fn failed:', err);
87+
})
88+
89+
```
90+
91+
## License
92+
[MIT](https://choosealicense.com/licenses/mit/)

dist/index.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/types/index.d.ts

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
declare class RetryFlow {
2+
/**
3+
* accept a callback
4+
* support interval set
5+
* support timeout set
6+
* support max try times set
7+
* support max try duration set
8+
* support pass result check
9+
* functional chain invoke
10+
*/
11+
private _callback;
12+
private _interval;
13+
private _timeout;
14+
private _retryTimes;
15+
private _retryDuration;
16+
private _retryType;
17+
private _curRetryTimes;
18+
private _checkPassFn;
19+
private _durationStartTime;
20+
constructor();
21+
func(callback: Function): this;
22+
interval(ms: number): this;
23+
timeout(ms: number): this;
24+
retryTimes(times: number): this;
25+
retryDuration(duration: number): this;
26+
checkPass(callback: Function): this;
27+
wait(interval: number): Promise<unknown>;
28+
start(): Promise<unknown>;
29+
private _startTimes;
30+
private _startDuration;
31+
private _excuteCb;
32+
private _increaseTimes;
33+
private _inDuration;
34+
private _clearTimes;
35+
private _clearDuration;
36+
}
37+
38+
export { RetryFlow as default };

jest.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export default {
2+
preset: 'ts-jest',
3+
}

0 commit comments

Comments
 (0)