Save

job.save()

The save method commits the current state of a job to the MongoDB database. This operation is essential for ensuring that changes made to a job's attributes, such as status updates, data modifications, or configuration changes, are not lost and are fully recoverable.

Example Usage

const pulse = new Pulse();

const job = pulse.create('delete old users', { to: 'pulsecron@gmail.com' });
job.save();

Parameters

Returns

  • Promise<Job>: A promise that resolves with the updated job instance once the save operation completes successfully. If there is an error during the save operation, the promise will reject with an error.

Last updated