User`s guide
11 Functions — Alphabetical List
11-98
specified property-value pairs, p1, v1, p2, v2, etc. The property name must be in the
form of a string, with the value being the appropriate type for that property. For a match,
the object property value must be exactly the same as specified, including letter case. For
example, if a task’s Name property value is MyTask, then findTask will not find that
object while searching for a Name property value of mytask.
Examples
Create a job object.
c = parcluster();
j = createJob(c);
Add a task to the job object.
createTask(j, @rand, 1, {10})
Find all task objects now part of job j.
t = findTask(j)
More About
Tips
If job j is contained in a remote service, findTask will result in a call to the remote
service. This could result in findTask taking a long time to complete, depending on the
number of tasks retrieved and the network speed. Also, if the remote service is no longer
available, an error will be thrown.
See Also
createJob | createTask | findJob