aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolden Rohrer <holden.rohrer@gmail.com>2020-01-09 14:10:59 -0500
committerHolden Rohrer <holden.rohrer@gmail.com>2020-01-09 14:10:59 -0500
commite3b0e5f511e09e06a4d10cce7c28cbe669755cb6 (patch)
treead2412ab82be218d22f0bd43ef88813678abf4bf
parent93a85ad37cefc4a704005d3e08f8afcd77bd43c0 (diff)
simplified queue.js
-rw-r--r--tools/queue.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/queue.js b/tools/queue.js
index 1e2b073..d8853e4 100644
--- a/tools/queue.js
+++ b/tools/queue.js
@@ -1,11 +1,13 @@
// A generalized queue object for rapid responses (doesn't do prioritization or algorithmic timesharing)
+// .enable must be used to start it, and .enqueue can be used at any time
module.exports = function(delayms, maxExport, call){
let queue = [];
let open = true; // The meaning of this variable is complicated, so watch closely
- let getObjs = (maxExport == 1) ?
+ let getObjs = (maxExport == 1) ? // Should call be given one object or an array?
() => queue.shift() :
- () => queue.splice(0, maxExport) ;
+ () => queue.splice(0, maxExport);
+
this.enqueue = function(arr){
for (item of arr)
queue.push(item);