Automattic / kue

Kue is a priority job queue backed by redis, built for node.js.
http://automattic.github.io/kue
MIT License
9.45k stars 862 forks source link

How to get created JobID #1125

Open mohmagdy opened 6 years ago

mohmagdy commented 6 years ago

after creation of job on Kue , I need to get the created Job ID to be used later for deletion of Job if needed how this could be achieved?

behrad commented 6 years ago
job#save( (err, job) => { console.log(job.id) })