Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 


Eclipse Platform
Release 3.5

org.eclipse.core.runtime.jobs
Interface IJobChangeListener

All Known Implementing Classes:
JobChangeAdapter, ModelMergeOperation, ModelOperation, ModelParticipantMergeOperation, SynchronizationOperation, SynchronizeModelOperation, TeamOperation

public interface IJobChangeListener

Callback interface for clients interested in being notified when jobs change state.

A single job listener instance can be added either to the job manager, for notification of all scheduled jobs, or to any set of individual jobs. A single listener instance should not be added to both the job manager, and to individual jobs (such a listener may receive duplicate notifications).

Clients should not rely on the result of the Job#getState() method on jobs for which notification is occurring. Listeners are notified of all job state changes, but whether the state change occurs before, during, or after listeners are notified is unspecified.

Clients may implement this interface.

Since:
3.0
See Also:
JobChangeAdapter, IJobManager.addJobChangeListener(IJobChangeListener), IJobManager.removeJobChangeListener(IJobChangeListener), Job.addJobChangeListener(IJobChangeListener), Job.getState(), Job.removeJobChangeListener(IJobChangeListener)

Method Summary
 void aboutToRun ( IJobChangeEvent event)
          Notification that a job is about to be run.
 void awake ( IJobChangeEvent event)
          Notification that a job was previously sleeping and has now been rescheduled to run.
 void done ( IJobChangeEvent event)
          Notification that a job has completed execution, either due to cancelation, successful completion, or failure.
 void running ( IJobChangeEvent event)
          Notification that a job has started running.
 void scheduled ( IJobChangeEvent event)
          Notification that a job is being added to the queue of scheduled jobs.
 void sleeping ( IJobChangeEvent event)
          Notification that a job was waiting to run and has now been put in the sleeping state.
 

Method Detail

aboutToRun

void aboutToRun(
IJobChangeEvent event)
Notification that a job is about to be run. Listeners are allowed to sleep, cancel, or change the priority of the job before it is started (and as a result may prevent the run from actually occurring).

Parameters:
event - the event details

awake

void awake(
IJobChangeEvent event)
Notification that a job was previously sleeping and has now been rescheduled to run.

Parameters:
event - the event details

done

void done(
IJobChangeEvent event)
Notification that a job has completed execution, either due to cancelation, successful completion, or failure. The event status object indicates how the job finished, and the reason for failure, if applicable.

Parameters:
event - the event details

running

void running(
IJobChangeEvent event)
Notification that a job has started running.

Parameters:
event - the event details

scheduled

void scheduled(
IJobChangeEvent event)
Notification that a job is being added to the queue of scheduled jobs. The event details includes the scheduling delay before the job should start running.

Parameters:
event - the event details, including the job instance and the scheduling delay

sleeping

void sleeping(
IJobChangeEvent event)
Notification that a job was waiting to run and has now been put in the sleeping state.

Parameters:
event - the event details

Eclipse Platform
Release 3.5

Guidelines for using Eclipse APIs.

Copyright (c) Eclipse contributors and others 2000, 2008. All rights reserved.


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire