Changeset 5450 for branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Hive
- Timestamp:
- 02/07/11 11:44:15 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Hive/3.4/IJob.cs
r5103 r5450 22 22 using System; 23 23 using System.Collections.Generic; 24 using HeuristicLab.Common; 24 25 using HeuristicLab.Core; 25 using HeuristicLab.Common;26 26 27 27 namespace HeuristicLab.Hive { … … 31 31 32 32 ExecutionState ExecutionState { get; } 33 33 34 34 /// <summary> 35 35 /// indicates wether it is possible to create childjobs from this job … … 47 47 /// </summary> 48 48 bool CollectChildJobs { get; set; } 49 49 50 50 void Prepare(); 51 51 … … 67 67 68 68 event EventHandler JobStopped; 69 69 70 event EventHandler JobPaused; 71 70 72 /// <summary> 71 73 /// When this event occurs the job wants to sleep until all his child jobs are finished … … 82 84 /// </summary> 83 85 event EventHandler DeleteChildJobs; 84 86 85 87 86 88 }
Note: See TracChangeset
for help on using the changeset viewer.