Lines Matching full:priority
16 //! The worker thread has a high priority and a low priority queue. Adding a job to either
20 //! Note that low priority tasks are processed only when the high priority queue is empty.
105 /// a low and a high priority work queue. The queues are processed FIFO, and low
106 /// priority queue is processed if the high priority queue is empty.
138 /// Adds a one-off job to the high priority queue. High priority jobs are
139 /// completed before low priority jobs and can also overtake low priority
148 /// Adds a one-off job to the low priority queue. Low priority jobs are
149 /// completed after high priority. And they are not executed as long as high
150 /// priority jobs are present. Jobs always run to completion and are never
151 /// preempted by high priority jobs.
160 /// idle (all high and low priority jobs have been performed).