File: control

package info (click to toggle)
node-run-queue 1.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 88 kB
  • sloc: makefile: 2; sh: 2
file content (30 lines) | stat: -rw-r--r-- 1,144 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Source: node-run-queue
Section: javascript
Priority: optional
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
Uploaders: Rajeev R Menon <icyfire@disroot.org>
Build-Depends:
 debhelper (>= 9)
 , dh-buildinfo
 , nodejs
Standards-Version: 4.1.0 
Homepage: https://npmjs.com/package/run-queue
Vcs-Git: https://anonscm.debian.org/git/pkg-javascript/node-run-queue.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-javascript/node-run-queue.git

Package: node-run-queue
Architecture: all
Depends:
 ${misc:Depends}
 , nodejs
 , node-aproba (>= 1.1.1)
Description: promise based dynamic priority queue runner
 A promise based, dynamic priority queue runner, with concurrency limiting.
 .
 The concurrency means that processes don't finish in order, because some take 
 longer than others. Each priority level must finish entirely before the 
 next priority level is run. Priorities essentially represent distinct job 
 queues. All jobs in a queue must complete before the next highest priority job 
 queue is executed. Lowest is executed first.  
 .
 Node.js is an event-based server-side JavaScript engine.