Client side view of a job.
Inherit from here when creating new service interfaces.
|
|
submit(self,
server=None,
request=None,
tags=TAGS,
when=None)
server - handle for the server
request - content of the service request
tags - strings to identify the job; default is your user name
when - preconditions for starting the job |
source code
|
|
|
|
|
|
|
cleanup(self)
Remove intermediate state about the job, such as the logging
information and temporary files from the computation. |
source code
|
|
|
|
delete(self)
Remove the job from the server and all associated data. |
source code
|
|
|
|
|
|
|
|
|
|
wait(self,
interval=0.1,
timeout=0)
Wait for the job to complete. |
source code
|
|
|
|
listen(self,
monitor)
Attach an additional monitor to the job. |
source code
|
|
|
|
set(self,
**kw)
Set attributes on the running service. |
source code
|
|
|
|
|
|
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__init__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__str__
|