## Create the queue
my $Qlinks = new Thread::Queue;
## Start the threads.
my @threads = map {
threads->create( \&getHTML, $Qlinks );
} 1 .. $noOfThreads;
## Fetch and parse the first page; queue the links
listParse( $firstURL, $Qlinks );
## Join the threads
$_->join for @threads;
The second of those lines creates 10 threads each running an independant copy of getHTML() and each is passed a copy of the queue handle. Each thread sits waiting (blocking) reading the queue, for a link to become available. Ie. they do nothing until the next line runs.
listParse() also get a handle to the queue, and whenever it finds a link, it posts it to the queue, and one of the threads (it doesn't matter which as the are all identical) will get it and do its thing.
When listParse() has finished finding the links, it pushes one undef per thread and then returns.
The fourth line, waits for all the threads to finish, at which point the only thing left to do is exit.
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
|