|
__eq__(self,
x)
Equality operator (==), compare the Task properties which are
declared as [comparable]. |
source code
|
|
|
__init__(self,
*args,
**kwds)
GPI Task object constructor: Task() : create task with default
settings; Task(t) : make a copy of t; Task(t,x=a,...): make a copy of
t and set property 'x' to a, etc.. |
source code
|
|
|
__ne__(self,
x)
Non-equality operator (!=). |
source code
|
|
|
|
|
|
|
__str__(self)
Return a printable string representing Task object as a tree of
properties. |
source code
|
|
|
|
|
check(...)
This function is called by run() or manually by the user |
source code
|
|
|
|
|
getJobs(...)
Get the job slice of all jobs that process this task |
source code
|
|
|
|
|
|
|
insertTransform(...)
Insert transfrm tf before index id (counting from 0) |
source code
|
|
|
|
|
|
|
|
|
pause(...)
Pause the task - the background thread will not submit new jobs from
this task |
source code
|
|
|
|
|
removeTransform(...)
Remove the transform with the index id (counting from 0) |
source code
|
|
|
run(...)
Confirms that this task is fully configured and ready to be run. |
source code
|
|
|
setBackend(...)
Sets the backend on all transforms |
source code
|
|
|
setParameter(...)
Use: setParameter(processName="HWW") to set the processName
in all applications to "HWW" Warns if applications are not
affected because they lack the parameter |
source code
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__sizeof__ ,
__subclasshook__
|