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