Changeset 4140 for branches/3.2/sources/HeuristicLab.Hive.Contracts
- Timestamp:
- 08/03/10 17:20:46 (14 years ago)
- Location:
- branches/3.2/sources/HeuristicLab.Hive.Contracts/3.2
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/sources/HeuristicLab.Hive.Contracts/3.2/ApplicationConstants.cs
r3931 r4140 85 85 public static string RESPONSE_COMMUNICATOR_SEND_JOBRESULT = "Please send the Jobresult to the server"; 86 86 public static string RESPONSE_COMMUNICATOR_PLUGINS_SENT = "Communicator.PluginsSent"; 87 public static string RESPONSE_COMMUNICATOR_PLUGINS_NOT_AVAIL = "Communicator.PluginsNotAvail"; 87 88 public static string RESPONSE_COMMUNICATOR_JOB_WAS_ABORTED = "Job was aborted"; 88 89 -
branches/3.2/sources/HeuristicLab.Hive.Contracts/3.2/BusinessObjects/ClientDto.cs
r3931 r4140 28 28 namespace HeuristicLab.Hive.Contracts.BusinessObjects { 29 29 30 public enum State { nullState, idle, calculating, offline, finished, abort, requestSnapshot, requestSnapshotSent, pending };30 public enum State { nullState, idle, calculating, offline, finished, abort, requestSnapshot, requestSnapshotSent, pending, failed }; 31 31 public enum CalendarState { Fetch, ForceFetch, Fetching, Fetched, NotAllowedToFetch }; 32 32 -
branches/3.2/sources/HeuristicLab.Hive.Contracts/3.2/BusinessObjects/HivePluginInfoDto.cs
r4042 r4140 41 41 [DataMember] 42 42 public DateTime BuildDate { get; set; } 43 44 [DataMember] 45 public Boolean Update { get; set; } 43 46 } 44 47 } -
branches/3.2/sources/HeuristicLab.Hive.Contracts/3.2/BusinessObjects/JobDto.cs
r3578 r4140 44 44 public double? Percentage { get; set; } 45 45 [DataMember] 46 public String Exception { get; set; } 47 [DataMember] 46 48 public DateTime? DateCreated { get; set; } 47 49 [DataMember]
Note: See TracChangeset
for help on using the changeset viewer.