summaryrefslogtreecommitdiff
path: root/PKG-INFO
blob: 5dc1fe16d2677215c8001a1217ab411289779262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
Metadata-Version: 1.0
Name: taskthread
Version: 1.4
Summary: Simple thread module to repetitively perform a task on a single thread
Home-page: http://hpcloud.com
Author: John Herndon
Author-email: john.herndon@hp.com
License: Apache
Description: TaskThread
        ==========
        
        Python thread module to repeat an predefined task on a thread mulitple times.
        A TaskThread is useful when a task needs to be repeated several times on 
        a separate thread. Normal usage of the threading.Thread class would call for
        creation of a new thread each time the same task needs to be run. This module
        allows for repetitive tasks to be run multiple times on the same thread by having
        the thread wait until the task needs to be executed again.
        
        
        Provided Classes
        ----------------
        ``taskthread.TaskThread```
            A sub-class of ``threading.Thread`` that may execute a single task
            multiple times without the overhead of starting a new thread.
        ``taskthread.TaskInProcessException``
            Exception that is thrown if a task is started on a thread that is
            already executing.
        
        
        Installation
        ------------
        
        *taskthread* may be installed by executing ``pip install taskthread``.
        
        
        Links
        -------------
        
        * `documentation <http://taskthread.readthedocs.org/en/latest/>`_ 
        * `source <http://github.com/hpcs-som/taskthread/>`_
        
        
        Changes
        -------
        
        v1.4
        ~~~~
        
        * **ADD** ``TimerTask`` class that runs a repetitive task on a taskthread.
        
        
        v1.3
        ~~~~
        
        * Change task loop to support python 2.6.
        
        
        v1.2
        ~~~~
        
        * Refactor the module so classes are defined in __init__.py.
        
        
        v1.1
        ~~~~
        
        * **ADD** ``TaskThread.join_task`` method that waits for the currently executing.
          task to complete.
        
        
        v1.0
        ~~~~
        
        * First release
        
        
        
        
Platform: UNKNOWN