Pop a Job from the Queue
foo,argt = jqo:pop()
Pops a job from the queue.
(Used internally.)
Returns | Type | Description |
---|---|---|
foo |
function | Function callback |
argt |
table | Table of arguments |
Use unpack
to convert argt
to set of arguments.
e.g.
jq = jobq.new()
…
local foo,argt = jq:pop()
if (foo) then foo(unpack(argt)) end
The jqo﹕run and jqo﹕poprun handle the unpacking etc.
This function is provided for flexibility.,