|
|
__init__(self,
max_simul=8,
feedback_timeout=5.0)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
convert_cmds(self,
in_cmds)
Converts a variable format input command list to a set of Jobs. |
source code
|
|
|
|
run(self,
cmds,
shell=False)
Run a series of commands and wait for their completion. |
source code
|
|
|
|
|
|
|
_check_feedback(self)
Call gen_feedback at regular interval. |
source code
|
|
|
|
job_finished(self,
job)
(Virtual) Called when a job has completed. |
source code
|
|
|
|
job_started(self,
job)
(Virtual) Called just after a job is started. |
source code
|
|
|
|
job_output(self,
job,
line)
(Virtual) Called for each line of output from a job. |
source code
|
|
|
|
gen_feedback(self)
(Virtual) Called whenever the Monitor things feedback should be
generated (in addition to the other events). |
source code
|
|
|
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|