Origam 2026.8 introduces support for scheduled work queue entry processing.
Scheduled processing allows a work queue entry to be added to a queue and processed automatically at the time specified in the work queue entry. This functionality does not use Scheduler; it is handled directly by the standard work queue processor.
Origam 2026.8 provides a basic implementation focused on making scheduled processing functional and reliable. Further improvements will be implemented based on feedback.
Usage
Scheduled processing requires Origam 2026.8 and Root package 5.8.
To enable scheduled processing for a work queue, add the ScheduledTime field to the WorkQueueStructure referenced by the WorkQueueClass supporting that queue.
Once the field is present, the queue supports scheduled processing:
- If
ScheduledTimeis set when a work queue entry is created, the entry will not be processed before the specified time. - If
ScheduledTimeis not set, the entry will be processed as soon as possible, as before.