Index

Object HARMONI.HarmoniJobTable


Method Index

 o EnterJob(HarmoniJob)
Enter the Harmoni job into the job-table.
 o GetJob(int)
Get a Harmoni job from the table
 o RemoveJob(int)
Remove a Harmoni job from the table.
 o ValidJob(int)
Test to see if a valid handle represents a job.

Method Detail

 o EnterJob
void EnterJob(HarmoniJob job)
          Enter the Harmoni job into the job-table.
Parameters:
job - The job to enter into the job-table
 o GetJob
HarmoniJob GetJob(int handle)
          Get a Harmoni job from the table
Returns:
The Harmoni job with the given handle, or null.
 o RemoveJob
void RemoveJob(int handle)
          Remove a Harmoni job from the table.
Parameters:
handle - The handle of the job to remove
 o 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