|
| 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/) |
0 commit comments