Index
Object HARMONI.HarmoniJobTable
EnterJob(HarmoniJob)
- Enter the Harmoni job into the job-table.
GetJob(int)
- Get a Harmoni job from the table
RemoveJob(int)
- Remove a Harmoni job from the table.
ValidJob(int)
- Test to see if a valid handle represents a job.
EnterJob
void EnterJob(HarmoniJob job)
Enter the Harmoni job into the job-table.
- Parameters:
job - The job to enter into the job-table
GetJob
HarmoniJob GetJob(int handle)
Get a Harmoni job from the table
- Returns:
- The Harmoni job with the given handle, or null.
RemoveJob
void RemoveJob(int handle)
Remove a Harmoni job from the table.
- Parameters:
handle - The handle of the job to remove
ValidJob
boolean ValidJob(int handle)
Test to see if a valid handle represents a job.
- Returns:
- True if there is a job with the handle in the job-table.
Index