+
Point of view
LOOP_ITEM
deferred class JOB
Summary
Overview
exported features
  • prepare (events: EVENTS_SET)
    use ready to descibe condition that make this job ready to continue.
  • is_ready (events: EVENTS_SET): BOOLEAN
    check if this job is ready to continue his work
  • continue
    Continue to do the job The work to do has to be small work and non blocking, it will continue on next call
  • done: BOOLEAN
    done returns True when the job is finished.
  • restart
    Configure the job like the initial state.
  • infix "<" (other: JOB): BOOLEAN
priority: INTEGER_32
writable attribute
Never change priority after job inserted in loop_item.
prepare (events: EVENTS_SET)
deferred procedure
use ready to descibe condition that make this job ready to continue.
is_ready (events: EVENTS_SET): BOOLEAN
deferred function
check if this job is ready to continue his work
continue
deferred procedure
Continue to do the job The work to do has to be small work and non blocking, it will continue on next call
done: BOOLEAN
deferred function
done returns True when the job is finished.
restart
deferred procedure
Configure the job like the initial state.
infix "<" (other: JOB): BOOLEAN
effective function