Go to the first, previous, next, last section, table of contents.


pauseJob

Control-struct: pauseJob { job -> }
file: job.t
package: muf
status: alpha

The pauseJob operator is a simple convenience which looks up the pause queue for the given job, and then calls queueJob on it.

It is currently implemented as:

: pauseJob { $ -> }     -> job
    job$s.owner          -> owner
    owner$s.pauseQueue  -> q
    job q queueJob
;


Go to the first, previous, next, last section, table of contents.