New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

task-queue

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

task-queue - npm Package Compare versions

Comparing version

to
1.0.2

29

lib/tq.js

@@ -53,13 +53,24 @@ // Generated by CoffeeScript 1.8.0

return function() {
var _ref, _ref1;
deq.method.apply((_ref = deq.context) != null ? _ref : null, (_ref1 = deq.args) != null ? _ref1 : null);
var task_return, _ref, _ref1;
task_return = deq.method.apply((_ref = deq.context) != null ? _ref : null, (_ref1 = deq.args) != null ? _ref1 : null);
if (_this.finishedTask != null) {
setImmediate(function() {
return _this.finishedTask(task_return);
});
}
if (--actual_concurrency === 0) {
if (_this._singleShot && _this.size() === 0) {
_this._singleShot = false;
_this._running = false;
if (_this.size() === 0) {
if (_this.finished != null) {
setImmediate(function() {
return _this.finished();
});
}
if (_this._singleShot && _this.size() === 0) {
_this._singleShot = false;
_this._running = false;
}
}
_this._exec;
if (_this.finished != null) {
return setTimeout(_this.finished, _this.opts.timeout);
}
return setTimeout((function() {
return _this._exec();
}), _this.opts.timeout);
}

@@ -66,0 +77,0 @@ };

{
"author" : "Roberto Sales <robertosalesc@dcc.ufba.br>",
"name": "task-queue",
"version": "1.0.1",
"version": "1.0.2",
"description": "async single worker tasks queue that supports concurrency, priority and provide simple interface for passing task arguments",

@@ -12,3 +12,3 @@ "keywords": ["task", "queue", "worker", "concurrency", "async", "priority"],

"type": "git",
"url": "http://github.com/skywalkerd/task-queue.git"
"url": "http://github.com/rsalesc/task-queue.git"
},

@@ -15,0 +15,0 @@ "dependencies":

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet