<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns="http://usefulinc.com/ns/doap#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><Project><name>threadpool</name>
<shortdesc>Easy to use object-oriented thread pool framework</shortdesc>
<description>A thread pool is an object that maintains a pool of worker threads to perform
time consuming operations in parallel. It assigns jobs to the threads
by putting them in a work request queue, where they are picked up by the
next available thread. This then performs the requested operation in the
background and puts the results in another queue.

The thread pool object can then collect the results from all threads from
this queue as soon as they become available or after all threads have
finished their work. It's also possible, to define callbacks to handle
each result as it comes in.

.. note::
    This module is regarded as an extended example, not as a finished product.
    Feel free to adapt it too your needs.</description>
<download-page>http://chrisarndt.de/projects/threadpool/download/</download-page>
<homepage rdf:resource="http://chrisarndt.de/projects/threadpool/" />
<maintainer><foaf:Person><foaf:name>Christopher Arndt</foaf:name>
<foaf:mbox_sha1sum>1408773daa952dbd838c7a0d0ff789e8dd1b831b</foaf:mbox_sha1sum></foaf:Person></maintainer>
<release><Version><revision>1.2.5</revision></Version></release>
</Project></rdf:RDF>