g-Eclipse
Release 1.0.0

eu.geclipse.core.model
Interface IGridJobStatusListener

All Known Implementing Classes:
GridJobView, GridProjectView, JobDetailsView

public interface IGridJobStatusListener

Interface for listener called when job status is updated


Method Summary
 void statusChanged(IGridJob job)
          Called when job status is changed.
 void statusUpdated(IGridJob job)
          Called after every update of job status, even if status wasn't changed during update.
 

Method Detail

statusChanged

void statusChanged(IGridJob job)
Called when job status is changed. Warning! Can be called from working thread, so please from statusChanged() don't call SWT methods directly. Rather use: use: display.syncExec ( new Runnable () { public void run () { } } );

Parameters:
job -

statusUpdated

void statusUpdated(IGridJob job)
Called after every update of job status, even if status wasn't changed during update.
Warning: now this method is called only for listeners, which listen for changes of all jobs registered using method JobManager.addJobStatusListener(IGridJobStatusListener)

Parameters:
job - for which, status has been updated

g-Eclipse
Release 1.0.0