// Gets global jobInfoList
GlobalJobInfoList global = getOwnerNode().getQueueNet().getJobInfoList();
// Sends "jobsPerLink" jobs on each output link
Iterator<NetNode> i = output.listIterator();
while (i.hasNext()) {
NetNode outNode = i.next();
for (int n = 0; n < jobsPerLink; n++) {
ForkJob newJob = new ForkJob(numOut, job, this);
// Sends new job to all following stations