simply-queue-manager
v0.0.5-beta4
Published
Simply queue manager
Downloads
5
Readme
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.
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
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: '[email protected]', fullname: 'John Doe'}
});
That's it!
The queue will start automatically because we have already started the start() method
Configuration
| Name | Type | Description |
| ------------- |:-------------| :-----|
| prefix | string | Storage key name prefix for jobs. Default: sq_jobs
| timeout | integer | Worker delay time of between two taks. Default: 1000
|
| max | integer | Runnable task limit. Default: -1 (limitless)
|
Example:
const queue = new Queue({prefix: 'my-Queue', timeout: 1500, max: 50, principle: Queue.FIFO})
Other ways config the queue (runtime):
const queue = new Queue;
queue.setTimeout(15000);
queue.setMax(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.
| Name | Type | Description |
| ------------- |:-------------| :-----|
| handler | string | Worker class name.
| args | string | Worker parameters.
| priority | string | Queue priority value. Default: 0
| tag | string | Task idenitity tag.
Example:
queue.add({
handler: 'SendEmail',
tag: 'email-sender',
args: {email: '[email protected]', 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: '[email protected]', 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: '[email protected]', fullname: 'John Doe'}
});
channel.has(id);
hasByTag()
Checks a task by tag.
channel.hasByTag('email-sender');