Trees | Index | Help |
---|
Package Bio :: Package MultiProc :: Module Task :: Class Task |
|
Contains information for one process.
Implements part of the Thread interface.
Methods: start Start this task. Should be called once. run Called by start to really run the task. getName Get the name of the task. setName Set the name of the task. isAlive Whether this Task is still running.
Members: retval Return value of the function.Method Summary | |
---|---|
Task([group][, target][, name][, args][, kwargs]) | |
__del__(self)
| |
S.getName() -> name | |
S.isAlive() -> boolean | |
S.run() | |
S.setName(name) | |
S.start() |
Method Details |
---|
__init__(self,
group=None,
target=None,
name=None,
args=(),
kwargs={})
|
getName(self)S.getName() -> name |
isAlive(self)S.isAlive() -> boolean |
run(self)S.run() Run this task. Should only be called by S.start(). |
setName(self, name)S.setName(name) |
start(self)S.start() Start this task. Should only be called once. |
Trees | Index | Help |
---|
Generated by Epydoc 2.1 on Wed Jan 31 09:58:02 2007 | http://epydoc.sf.net |