You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@kijuub/timed-retry-queue

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kijuub/timed-retry-queue - npm Package Compare versions

Comparing version
1.1.1
to
1.1.3
+2
-2
package.json
{
"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",

@@ -10,6 +10,10 @@ [![Timed Retry Queue](assets/logo.png "Timed Retry Queue")](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 @@