Eyeon:Script/Reference/Applications/Fusion/Classes/QueueManager/GetJobList
From VFXPedia
< Eyeon:Script | Reference | Applications | Fusion | Classes | QueueManager
Contents |
QueueManager : GetJobList
Arguments
GetJobList()
Returns
A table with all jobs currently in the render manager's queue.
Remarks
This function returns a table with RenderJob objects that represent the jobs currently in the queue manager. Like any other object within fusion, these objects have attributes that indicate information about the status of the object, and functions that can query or manipulate the object. For further examples of how to use these attributes, see the RenderManager Status script included with Fusion's installation.
Requirements
- eyeonScript 5.0
- Fusion 5.0
Examples
-- Prints the names of each job currently in the queue qm = fusion.RenderManager jl = qm:GetJobList() for i, job in jl do print(job:GetAttrs().RJOBS_Name) end
Tips for GetJobList (edit)
EyeonTips:Script/Reference/Applications/Fusion/Classes/QueueManager/GetJobList