Eyeon:Script/Reference/Applications/Fusion/Classes/QueueManager/ScanForSlaves

From VFXPedia

< Eyeon:Script | Reference | Applications | Fusion | Classes | QueueManager
Revision as of 08:51, 2 March 2007 by Daniel (Talk | contribs)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Contents

QueueManager : ScanForSlaves

Arguments

ScanForSlaves()

Returns

This function does not return a value.

Remarks

This function locates all machines on the local network (local subnet only), queries each to find out if they are currently running a copy of Fusion or RenderNode, then adds them to the manager's Slaves list.

Requirements

  • eyeonScript 5.0
  • Fusion 5.0

Examples

qm = fusion.RenderManager
 
qm:ScanForSlaves()
 
slvlist = qm:GetSlaveList()
 
for i, slv in slvlist do
   print("Slave: "..slv:GetAttrs().RSLVS_Name)
end


Tips for ScanForSlaves (edit)

EyeonTips:Script/Reference/Applications/Fusion/Classes/QueueManager/ScanForSlaves