|
|
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
|
|
|
|
| register_listener(self,
listener) |
|
|
|
|
| unregister_listener(self,
listener) |
|
|
|
|
create_job(self,
command,
start)
Create a new job from a command object and return it. |
|
|
|
|
|
|
|
forget_job(self,
job)
Forget the job from disk. |
|
|
|
|
get_job(self,
jobid)
Fetch the job with the given id, or None if there's no job with that
id. |
|
|
|
|
get_prev_job(self,
jobid)
Given a job object, return the job immediately before it, or None if
it's the first job. |
|
|
|
|
|
|
|
get_jobid_list(self)
Return a list of all jobids as strings. |
|
|
|
|
terminate(self)
Called when the program is exiting, so that the manager can clean up. |
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|