Changeset 3138 for trunk/openmole/core/org.openmole.core.workflow.implementation/src/main/java/org/openmole/core/workflow/implementation/execution/local/LocalExecuter.java
- Timestamp:
- 03/02/10 11:28:24 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/openmole/core/org.openmole.core.workflow.implementation/src/main/java/org/openmole/core/workflow/implementation/execution/local/LocalExecuter.java
r3134 r3138 48 48 while (!stop) { 49 49 LocalExecutionJob executionJob = null; 50 IProgress progress = new Progress(); 51 Activator.getEventDispatcher().registerListener(progress, new LocalExecuterAdapter(this)); 52 50 53 51 try { 54 52 executionJob = localEnvironment.takeNextjob(); … … 59 57 for(IMoleJob moleJob : job.getMoleJobs()) { 60 58 LOGGER.finer("New job group taken for execution: " + moleJob); 59 IProgress progress = new Progress(); 60 Activator.getEventDispatcher().registerListener(progress, new LocalExecuterAdapter(this)); 61 61 62 62 moleJob.perform(localEnvironment.getRealEnvironment(), executionContext, progress);





