cletus/node_modules/agenda/lib/job/remove.ts
2025-05-09 15:53:19 -05:00

10 lines
235 B
TypeScript

import { Job } from ".";
/**
* Remove the job from MongoDB
* @name Job#remove
* @function
*/
export const remove = async function (this: Job): Promise<number | undefined> {
return this.agenda.cancel({ _id: this.attrs._id });
};