Class WorkerJob
- All Implemented Interfaces:
- Comparable<org.eclipse.core.internal.jobs.InternalJob>,- IAdaptable
- 
Field SummaryFields inherited from class org.eclipse.core.runtime.jobs.JobASYNC_FINISH, BUILD, DECORATE, INTERACTIVE, LONG, NONE, RUNNING, SHORT, SLEEPING, WAITINGFields inherited from class org.eclipse.core.internal.jobs.InternalJobmanager
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidadd(IRunnableWithProgress runnable) protected IStatusrun(IProgressMonitor monitor) Executes this job.booleanReturns whether this job should be run.Methods inherited from class org.eclipse.core.runtime.jobs.JobaddJobChangeListener, belongsTo, cancel, canceling, create, create, createSystem, createSystem, done, getJobGroup, getJobManager, getName, getPriority, getProperty, getResult, getRule, getState, getThread, isBlocking, isSystem, isUser, join, join, removeJobChangeListener, schedule, schedule, setJobGroup, setName, setPriority, setProgressGroup, setProperty, setRule, setSystem, setThread, setUser, shouldSchedule, sleep, toString, wakeUp, wakeUp, yieldRuleMethods inherited from class org.eclipse.core.internal.jobs.InternalJobcompareToMethods inherited from class org.eclipse.core.runtime.PlatformObjectgetAdapter
- 
Constructor Details- 
WorkerJob
 
- 
- 
Method Details- 
runDescription copied from class:JobExecutes this job. Returns the result of the execution.The provided monitor can be used to report progress and respond to cancellation. If the progress monitor has been canceled, the job should finish its execution at the earliest convenience and return a result status of severity IStatus.CANCEL. The singleton cancel statusStatus.CANCEL_STATUScan be used for this purpose. The monitor is only valid for the duration of the invocation of this method.This method must not be called directly by clients. Clients should call schedule, which will in turn cause this method to be called.Jobs can optionally finish their execution asynchronously (in another thread) by returning a result status of Job.ASYNC_FINISH. Jobs that finish asynchronously must specify the execution thread by callingsetThread, and must indicate when they are finished by calling the methoddone.
- 
shouldRunpublic boolean shouldRun()Description copied from class:JobReturns whether this job should be run. Iffalseis returned, this job will be discarded by the job manager without running.This method is called immediately prior to calling the job's run method, so it can be used for last minute precondition checking before a job is run. This method must not attempt to schedule or change the state of any other job. Clients may override this method. This default implementation always returns true.
- 
add
 
-