|
|
XGJob |
| Inherits from: | |
| Declared In: |
This class provides a local interface to remote Xgrid jobs.
Returns the active CPU power of the job.
Returns the applicationIdentifier of the job.
Returns the applicationInfo of the job.
Returns the number of tasks that have completed.
Returns the date the job was started.
Returns the date the job was stopped.
Returns the date the job was submitted.
Returns the name associated with the job.
Returns the percentage of the job that has completed.
Attempts to delete the job represented by the receiver.
Attempts to retrieve a list of output files for the job represented by the receiver.
Attempts to retrieve a list of output streams for the job represented by the receiver.
Attempts to retrieve the specification used to submit the job represented by the reciever.
Attempts to restart the job represented by the receiver.
Attempts to resume the job represented by the receiver.
Attempts to stop the job represented by the receiver.
Attempts to suspend the job represented by the receiver.
Returns the number of tasks that make up the job.
activeCPUPower |
Returns the active CPU power of the job.
- (float)activeCPUPower;
The active CPU power of the job.
The active CPU power of a job is the sum of the CPU power of each of the active processors running one of the job's tasks.
applicationIdentifier |
Returns the applicationIdentifier of the job.
- (NSString *)applicationIdentifier;
The applicationIdentifier of the job.
The applicationIdentifier is a identifier string set on the job by the application that submitted the job. The appliationIdentifier is not guaranteed to be unique.
applicationInfo |
Returns the applicationInfo of the job.
- (NSDictionary *)applicationInfo;
The applicationInfo of the job.
The applicationInfo is a dictionary set on the job by the application that submitted the job.
completedTaskCount |
Returns the number of tasks that have completed.
- (NSInteger)completedTaskCount;
The number of completed tasks.
dateStarted |
Returns the date the job was started.
- (NSDate *)dateStarted;
The start date.
dateStopped |
Returns the date the job was stopped.
- (NSDate *)dateStopped;
The stop date.
dateSubmitted |
Returns the date the job was submitted.
- (NSDate *)dateSubmitted;
The submission date.
name |
Returns the name associated with the job.
- (NSString *)name;
A string.
percentDone |
Returns the percentage of the job that has completed.
- (float)percentDone;
The percent done, from 0.0 to 100.0.
performDeleteAction |
Attempts to delete the job represented by the receiver.
- (XGActionMonitor *)performDeleteAction;
An XGActionMonitor instance for tracking the action progress.
performGetOutputFilesAction |
Attempts to retrieve a list of output files for the job represented by the receiver.
- (XGActionMonitor *)performGetOutputFilesAction;
An XGActionMonitor instance for tracking the action progress.
performGetOutputStreamsAction |
Attempts to retrieve a list of output streams for the job represented by the receiver.
- (XGActionMonitor *)performGetOutputStreamsAction;
An XGActionMonitor instance for tracking the action progress.
performGetSpecificationAction |
Attempts to retrieve the specification used to submit the job represented by the reciever.
- (XGActionMonitor *)performGetSpecificationAction;
An XGActionMonitor instance for tracking the action progress.
performRestartAction |
Attempts to restart the job represented by the receiver.
- (XGActionMonitor *)performRestartAction;
An XGActionMonitor instance for tracking the action progress.
performResumeAction |
Attempts to resume the job represented by the receiver.
- (XGActionMonitor *)performResumeAction;
An XGActionMonitor instance for tracking the action progress.
performStopAction |
Attempts to stop the job represented by the receiver.
- (XGActionMonitor *)performStopAction;
An XGActionMonitor instance for tracking the action progress.
performSuspendAction |
Attempts to suspend the job represented by the receiver.
- (XGActionMonitor *)performSuspendAction;
An XGActionMonitor instance for tracking the action progress.
taskCount |
Returns the number of tasks that make up the job.
- (NSInteger)taskCount;
The number of tasks.
Last Updated: 2009-08-12