Skip to content

Instantly share code, notes, and snippets.

@dreadjr
Created October 23, 2012 22:23
Show Gist options
  • Save dreadjr/3942076 to your computer and use it in GitHub Desktop.
Save dreadjr/3942076 to your computer and use it in GitHub Desktop.
var kue = require('kue');
var jobs = kue.createQueue();
setInterval(function() {
var job = jobs.create('add', {x: 1, y: 2}).save();
job.on('complete', function() {
console.log('job complete');
});
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment