public interface JobQueue
Created: January 20 2012
IndexingJob, 
SimpleIndexingAdmin| Modifier and Type | Field and Description | 
|---|---|
| static java.lang.String | CLASS_VERSIONClass version string | 
| Modifier and Type | Method and Description | 
|---|---|
| void | enqueueJob(IndexingJob pJob,
          boolean pPriorityJob)Adds an indexing job to the queue. | 
| IndexingJob[] | getQueuedJobs()Returns an array of queued indexing jobs. | 
| void | processJobQueue()Processes queued indexing jobs. | 
| void | removeJob(IndexingJob pJob)Removes indexing job from the queue. | 
static final java.lang.String CLASS_VERSION
void enqueueJob(IndexingJob pJob, boolean pPriorityJob) throws IndexingException
pJob - an indexing job to addpPriorityJob - true if the job should be dequeued firstIndexingExceptionvoid processJobQueue()
IndexingJob[] getQueuedJobs()
void removeJob(IndexingJob pJob)
pJob - a job to be removed