Class BasicUIJob
- All Implemented Interfaces:
Comparable<org.eclipse.core.internal.jobs.InternalJob>
,IAdaptable
- Since:
- 1.2
-
Field Summary
Fields inherited from class org.eclipse.core.runtime.jobs.Job
ASYNC_FINISH, BUILD, DECORATE, INTERACTIVE, LONG, NONE, RUNNING, SHORT, SLEEPING, WAITING
Fields inherited from class org.eclipse.core.internal.jobs.InternalJob
manager
-
Constructor Summary
ConstructorDescriptionBasicUIJob
(String name, Display display) Create a new instance of the receiver with the supplied name. -
Method Summary
Modifier and TypeMethodDescriptionReturns the display for use by the receiver when running in an asyncExec.final IStatus
run
(IProgressMonitor monitor) Executes this job.abstract IStatus
runInUIThread
(IProgressMonitor monitor) Run the job in the UI Thread.Methods inherited from class org.eclipse.core.runtime.jobs.Job
addJobChangeListener, 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, shouldRun, shouldSchedule, sleep, toString, wakeUp, wakeUp, yieldRule
Methods inherited from class org.eclipse.core.internal.jobs.InternalJob
compareTo
Methods inherited from class org.eclipse.core.runtime.PlatformObject
getAdapter
-
Constructor Details
-
BasicUIJob
Create a new instance of the receiver with the supplied name. The display used will be the one from the workbench if this is available. UIJobs with this constructor will determine their display at runtime.- Parameters:
name
- the job name
-
-
Method Details
-
run
Description copied from class:Job
Executes 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_STATUS
can 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
. -
runInUIThread
Run the job in the UI Thread.- Returns:
- IStatus
-
getDisplay
Returns the display for use by the receiver when running in an asyncExec. If it is not set then the display set in the workbench is used. If the display is null the job will not be run.- Returns:
- Display or
null
.
-