Save
job.save()
job.save()
Example Usage
const pulse = new Pulse();
const job = pulse.create('delete old users', { to: '[email protected]' });
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
Was this helpful?