/
SCHED Library
SCHED Library
The SCHED library is a helpful library for scheduling a process to run once a day at a specific hour of day when used in conjunction with the component timer. This is useful for running batch processes.
Use the SCHEDrunAt()
function to specify when a function or process should execute. Additional arguments can be passed for the function that will be called.
SCHEDrunAt(11.5, DoBatchProcess, "Some Argument", "Second Argument", "etc...")
When run for the first time, the function will execute the batch process once and store the last run time in a text file (<COMPONENT NAME>_LastScheduledTime.txt
) in the working directory. Subsequent calls will check the current time and compare it with the scheduled run time and last run time. This means that a smaller component polling interval will result in a more timely execution.
, multiple selections available,
Related content
DEV Library
DEV Library
More like this
Process Scheduler
Process Scheduler
More like this
From File
From File
More like this
Script Timeouts
Script Timeouts
More like this
Bulk Clear Queue
Bulk Clear Queue
More like this
Log Purging
Log Purging
More like this