Index

Object PCRE.PCREJobTable


Method Index

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

Method Detail

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