Socket
Socket
Sign inDemoInstall

storage-based-queue

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

storage-based-queue

Simply queue manager


Version published
Weekly downloads
58
increased by28.89%
Maintainers
1
Weekly downloads
 
Created
Source

npm version Build Status Dependency Status devDependencies Status Known Vulnerabilities

Storage Based Queue on Browser

Storage based queue processing mechanism. Today, many backend technology is a simple derivative of the queuing systems used in the browser environment.

You can run jobs over the channels as asynchronous that saved regularly.

This library just a solution method for some use cases. Today, there are different technologies that fulfill the similar process.

How it works?

Data regularly store (local storage for now) added to queue pool. Storing queue data is also inspired by the JSON-RPC method. When the queue is started, the queues start to be processed sequentially in the specified range according to the sorting algorithm.

If any exceptions occur while the worker classes are processing, the current queue is reprocessed to try again. The task is frozen when it reaches the defined retry value.

Channels

You need to create at least one channel. One channel can be created as many channels as desired. Channels run independently of each other. The areas where each channel will store tasks are also separate. The area where tasks are stored is named with the channel name and prefix.

The important thing to remember here is that each newly created channel is actually a new copy of the Queue class. So a new instance is formed, but the dependencies of the channels are still alive as singletons.

Example; You created two channels. Their names are channelA and channelB. If you make a setting in the channelA instance, this change will also be reflected in channelB and all other channels.

Workers

Worker classes should return boolean (true / false) data with the Promise class as the return value. The return Promise / resolve (true) must be true if a task is successfully completed and you want to pass the next task. A possible exception should also be tried again: Promise / resolve (false). If we do not want the task to be retried and we want to pass the next task: Promise / reject ('any value')

Quick Start

Installation

$ npm install storage-based-queue --save

import:

import * as Queue from 'storage-based-queue';

import via script tag:

<script type="text/javascript" src="node_modules/storage-based-queue/dist/queue.js">

Create instance:

new Queue;

Worker class:

class SendEmail {
  retry = 2;

  handle(args) {
    try {
      return new Promise((resolve, reject) => {
        resolve(true);
      });
    } catch(e) {
      reject('rejected')
    }
  }
}

Note: The return value of the worker classes must be promise.

Worker Register:

Queue.register([
  { handler: SendEmail }
]);

Create channel and run queue listener:

const queue = new Queue();

const channelA = queue.create('send-email');

channelA.start();

Add a job to channelA listener:

channelA.add({
  handler: 'SendEmail',
  args: {email: 'johndoe@example.com', fullname: 'John Doe'}
});

That's it!

The queue will start automatically because we have already started the start() method

Configuration

NameTypeDescription
prefixstringStorage key name prefix for jobs. Default: sq_jobs
timeoutintegerWorker delay time of between two taks. Default: 1000
limitintegerRunnable task limit. Default: -1 (limitless)

Sorting Algorithms

NameDescription
FIFOFirst In First Out (Default)
LIFOLast In First Out

Detail information: FIFO and LIFO

Example:

const queue = new Queue({prefix: 'my-Queue', timeout: 1500, limit: 50, principle: Queue.FIFO})

Other ways config the queue (runtime):

const queue = new Queue;
queue.setTimeout(15000);
queue.setLimit(50);
queue.setPrefix('my-Queue');
queue.setPrinciple(Queue.LIFO);

Advanced Workers

Below the detailed worker class usage.

class SendEmail {
  retry = 2;

  handle(args, dep1, dep2) {
    try {
      return new Promise((resolve, reject) => {
        resolve(true);
      });
    } catch(e) {
      reject('rejected')
    }
  }
  
  before(args) {
    //
  }
  
  after(args) {
    //
  }
}

Note: The worker classes has two events. before and after

Register:

const user = new User;
const order = new Order;

Queue.register([
  { handler: SendEmail, deps: { user, order } }
]);

Methods

All methods will explain in this section with examples.

add()

Create new task and return it's queue id.

NameTypeDescription
handlerstringWorker class name.
argsstringWorker parameters.
prioritystringQueue priority value. Default: 0
tagstringTask idenitity tag.

Example:


queue.add({
  handler: 'SendEmail',
  tag: 'email-sender',
  args: {email: 'johndoe@example.com', fullname: 'John Doe'},
  priority: 2
});

start()

Start the queue listener. If has any tasks waiting the run, starts the process of these tasks. Next when adding tasks will run automaticly.

Example:

const queue = new Queue;

queue.start();

stop()

Stop the queue listener after current tasks is done.

queue.stop();

forceStop()

Stop the queue listener including current task.

queue.forceStop();

create()

Create a new channel.

const channelA = qeueu.create('channel-a');

channelA.add({
  handler: 'SendEmail',
  args: {email: 'johndoe@example.com', fullname: 'John Doe'}
});

channelA.start();

isEmpty()

Checks the channel repository has any task.

channel.isEmpty()

count()

Get the number of tasks.

channel.count();

countByTag()

Get the number of tasks by a specific tag.

channel.countByTag('send-email');

clear()

Clear all tasks.

channel.clear();

clearByTag()

Clear all tasks by a specific tag.

channel.clearByTag('send-email');

has()

Checks a task by queue id.

const id = channel.add({
  handler: 'SendEmail',
  args: {email: 'johndoe@example.com', fullname: 'John Doe'}
});
channel.has(id);

hasByTag()

Checks a task by tag.

channel.hasByTag('email-sender');

Documentaion

License

MIT license

Keywords

FAQs

Package last updated on 28 Dec 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc