UNPKG

agenda

Version:

Light weight job scheduler for Node.js

11 lines (9 loc) 226 B
'use strict'; /** * Remove the job from MongoDB * @param {Function} cb called when job removal fails or passes * @returns {undefined} */ module.exports = function(cb) { this.agenda.cancel({_id: this.attrs._id}, cb); };