throttle-exec
3.1.0 • Public • Published throttle-exec
A simple job-queue manager based on Promise mechanims
Installation
$ npm install throttle-exec
Usage
var ThrottleEngine = require("throttle-exec")
var maximumProcess = 10
var throttleInstance = new ThrottleEngine(maximumProcess)
Function that perform asynchronous logic
var wrappedAsync = throttleInstance.wrap(function(p1,p2){
return new Promise(function(resolve,reject){
var ret = {}
resolve(ret)
})
})
wrappedAsync("http://npmjs.org","http://google.com").then(function(ret){
console.log(ret)
}).catch(console.error)
Function that perform synchronous logic
var wrappedSync = throttleInstance.wrap(function(p1,p2){
return p1 * p2;
})
wrappedSync(5,2).then(function(result){
console.log(result)
}).catch(console.error)
GitHub
https://github.com/aerios/throttle-exec
Package Sidebar
Install
Weekly Downloads