Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/31/08 13:08:41 (16 years ago)
Author:
gkronber
Message:

implemented #216 (ProcessingEngine should terminate on breakpoints)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Grid/JobManager.cs

    r402 r414  
    189189
    190190    public WaitHandle BeginExecuteOperation(IScope globalScope, AtomicOperation operation) {
     191      return BeginExecuteEngine(new ProcessingEngine(globalScope, operation));
     192    }
     193
     194    public WaitHandle BeginExecuteEngine(ProcessingEngine engine) {
    191195      Job job = new Job();
    192       job.engine = new ProcessingEngine(globalScope, operation);
     196      job.engine = engine;
    193197      job.waitHandle = new ManualResetEvent(false);
    194198      job.restarts = 0;
Note: See TracChangeset for help on using the changeset viewer.