- Timestamp:
- 04/11/11 15:32:27 (14 years ago)
- Location:
- branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.4
-
Property
svn:ignore
set to
bin
obj
HeuristicLab.HiveEngine-3.4.csproj.vs10x
-
Property
svn:ignore
set to
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.4/EngineJob.cs
r5958 r6000 33 33 this.initialOperation = initialOperation; 34 34 this.engine = engine; 35 this.engine.Prepare(initialOperation);36 35 RegisterEngineEvents(); 37 36 } … … 42 41 : base(original, cloner) { 43 42 this.engine = cloner.Clone(original.engine); 43 this.initialOperation = cloner.Clone(original.initialOperation); 44 44 RegisterEngineEvents(); 45 45 } … … 60 60 61 61 public override void Start() { 62 engine.Prepare(initialOperation); 62 63 engine.Start(); 63 64 } 64 65 65 66 public override void Pause() { 66 throw new NotImplementedException();67 engine.Pause(); 67 68 } 68 69 … … 80 81 } 81 82 82 void engine_ExceptionOccurred(object sender, EventArgs<Exception> e) {83 private void engine_ExceptionOccurred(object sender, EventArgs<Exception> e) { 83 84 OnJobFailed(e); 84 85 } 85 86 86 void engine_Stopped(object sender, EventArgs e) {87 private void engine_Stopped(object sender, EventArgs e) { 87 88 OnJobStopped(); 88 89 }
Note: See TracChangeset
for help on using the changeset viewer.