Navigation
|
Synopsis Log the start of a job.
Function -
void startJob(str name)
-
void startJob(str name, int totalWork)
-
void startJob(str name, int workShare, int totalWork)
Usage import util::Monitor;
Description The various forms of startJob do the following:
- Register a job with a name, a default amount of work contributed to the overall task, and an unknown amount of steps to do.
- Register a job with a name and a total amount of steps to do (this will also be the amount of work contributed to the parent job, if any
- Register a job with a name, the amount this will contribute to the overall task, and a total amount of steps to do.
|