0.0.16 • Published 10 years ago

stevejobs v0.0.16

Weekly downloads
2
License
-
Repository
github
Last release
10 years ago

Simplistic in-memory job/worker manager with rate limiting and custom worker counts

Install:

npm install stevejobs

Usage:

var SteveJobs = require('stevejobs');

var steve = new SteveJobs({
    delay: 4000, // ms
    workers: 3 // 3 concurrent workers
});

steve.addHandler('do_something', function(done, myvars) {
    // do something here
    done();
});

steve.addJob('do_something', myvar);

steve.start();

That's it..

0.0.16

10 years ago

0.0.15

11 years ago

0.0.14

11 years ago

0.0.13

11 years ago

0.0.12

11 years ago

0.0.11

11 years ago

0.0.10

11 years ago

0.0.9

11 years ago

0.0.8

11 years ago

0.0.7

11 years ago

0.0.6

11 years ago

0.0.5

11 years ago

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago