Changeset 5779 for branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/DataTransfer
- Timestamp:
- 03/21/11 15:05:48 (14 years ago)
- Location:
- branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/DataTransfer
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/DataTransfer/JobState.cs
r5636 r5779 20 20 #endregion 21 21 22 using System; 22 23 23 24 namespace HeuristicLab.Services.Hive.Common.DataTransfer { 25 [Serializable] 24 26 public enum JobState { 25 27 /// <summary> 26 28 /// A job is offline as long as he is not yet submitted to the hive 27 29 /// </summary> … … 52 54 /// </summary> 53 55 Calculating, 54 56 55 57 /// <summary> 56 58 /// Job is paused, will not be picked up by slaves -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/DataTransfer/LightweightJob.cs
r5718 r5779 37 37 [DataMember] 38 38 public JobState State { get; set; } 39 [DataMember] 40 public Command? Command { get; set; } 39 41 40 42 public StateLog CurrentStateLog { get { return StateLog.LastOrDefault(); } } … … 52 54 this.StateLog = new List<StateLog>(job.StateLog); 53 55 this.State = job.State; 56 this.Command = job.Command; 54 57 } 55 58 }
Note: See TracChangeset
for help on using the changeset viewer.