ProcessEvery
pulse.processEvery(interval)
pulse.processEvery(interval)
The processEvery
method of the Pulse
class allows to configure the job processing interval, meaning the frequency at which Pulse will query the database looking for jobs that need to be processed.
Example Usage
Parameters
interval
(string
): The interval at which to process jobs, expressed in a human-readable format, such as '5 minutes', '1 hour', etc.
Returns
Pulse
: Returns the instance of thePulse
class, facilitating method chaining.
Last updated
Was this helpful?