@kijuub/timed-retry-queue
Advanced tools
+2
-2
| { | ||
| "name": "@kijuub/timed-retry-queue", | ||
| "version": "1.1.1", | ||
| "description": "A retry timed task queue where the next task gets executed when the previous one is completed or fails a limit number of times.", | ||
| "version": "1.1.3", | ||
| "description": "A retry timed task queue where the next task gets executed when the previous one is completed or fails a limited number of times. It can also be used as a regular queue without retries and offers custom queue logic implementations.", | ||
| "main": "lib/index.js", | ||
@@ -6,0 +6,0 @@ "types": "lib/index.d.ts", |
+6
-2
@@ -10,6 +10,10 @@ [](https://bostjan-cigan.com "Boštjan Cigan") | ||
| This is an easy utility for processing tasks in a sequential order with a number of retries (time based) before failing or returning the result. The default queue implementation is FIFO based. | ||
| This is an easy utility for processing tasks in a sequential order with a number of retries (time based) before failing or returning the result. | ||
| You can also use the following extension(s) to change how the queue elements behave or write your own queue implementation. | ||
| It can also be used as a regular queue if you do not provide retry information or reset the default settings. | ||
| The default queue implementation is FIFO based. | ||
| You can also use the following extension(s) to change how the queue behaves or write your own queue implementation. | ||
| * [Timed Retry Dependency Queue](https://npmjs.com/@kijuub/timed-retry-dependency-queue) - A dependency queue implementation where tasks are executed in the order of their specified dependencies | ||
@@ -16,0 +20,0 @@ |
35609
0.59%148
2.78%