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

10 lines
343 B
TypeScript

import { Job } from ".";
/**
* Sets the flag if the return value of the job should be persisted
* @param shouldSaveResult flag if the return value of the job should be persisted
*/
export const setShouldSaveResult = function (this: Job, shouldSaveResult: boolean): Job {
this.attrs.shouldSaveResult = shouldSaveResult;
return this;
};