summaryrefslogtreecommitdiffstats
path: root/python/threadpool/slack-desc
diff options
context:
space:
mode:
author Dimitris Zlatanidis2014-01-06 22:25:08 +0100
committer Erik Hanson2014-01-07 18:13:07 +0100
commit08b3ed87ae3f4d48bba025bf3f3103f64cdc19c9 (patch)
tree9a9155ba884cb50906bcd731ceb2144d4f22898b /python/threadpool/slack-desc
parente8839eb2a3810236885e1e40e8e383081725485b (diff)
downloadslackbuilds-08b3ed87ae3f4d48bba025bf3f3103f64cdc19c9.tar.gz
python/threadpool: Added (object-oriented thread pool framework).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'python/threadpool/slack-desc')
-rw-r--r--python/threadpool/slack-desc19
1 files changed, 19 insertions, 0 deletions
diff --git a/python/threadpool/slack-desc b/python/threadpool/slack-desc
new file mode 100644
index 0000000000..2cc1bb77cd
--- /dev/null
+++ b/python/threadpool/slack-desc
@@ -0,0 +1,19 @@
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description.
+# Line up the first '|' above the ':' following the base package name, and
+# the '|' on the right side marks the last column you can put a character in.
+# You must make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':' except on otherwise blank lines.
+
+ |-----handy-ruler------------------------------------------------------|
+threadpool: threadpool (Easy to use object-oriented thread pool framework)
+threadpool:
+threadpool: A thread pool is an object that maintains a pool of worker threads to
+threadpool: perform time consuming operations in parallel. It assigns jobs to the
+threadpool: threads by putting them in a work request queue, where they are picked
+threadpool: up by the next available thread. This then performs the requested
+threadpool: operation in the background and puts the results in another queue.
+threadpool:
+threadpool: homepage : http://chrisarndt.de/projects/threadpool/
+threadpool:
+threadpool: