| commit | 58b9f11ca7b449f85f2f1fb5337ba7633e50b14b | [log] [tgz] |
|---|---|---|
| author | Leo Repp <Leo-Aus-Berlin@korap.ids-mannheim.de> | Mon Nov 22 11:57:47 2021 +0100 |
| committer | Leo Repp <Leo-Aus-Berlin@korap.ids-mannheim.de> | Mon Nov 22 12:32:23 2021 +0100 |
| tree | 86e7fd07581cf05dba0be270770615484e2df7a2 | |
| parent | 5799740cf920e408eaced0d59dd1fb8984698639 [diff] [blame] |
Demo for query storing Change-Id: I947bcac841992c3f6cfd01ab337c265b0d01cb70
diff --git a/node_modules/fastq/example.js b/node_modules/fastq/example.js new file mode 100644 index 0000000..4f834c4 --- /dev/null +++ b/node_modules/fastq/example.js
@@ -0,0 +1,12 @@ +'use strict' + +var queue = require('./')(worker, 1) + +queue.push(42, function (err, result) { + if (err) { throw err } + console.log('the result is', result) +}) + +function worker (arg, cb) { + cb(null, 42 * 2) +}