Changeset 3931 for branches/3.2/sources/HeuristicLab.Hive.Contracts
- Timestamp:
- 06/19/10 09:17:24 (15 years ago)
- Location:
- branches/3.2/sources/HeuristicLab.Hive.Contracts/3.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/sources/HeuristicLab.Hive.Contracts/3.2/ApplicationConstants.cs
r3578 r3931 29 29 public class ApplicationConstants { 30 30 31 public static System.Data.IsolationLevel ISOLATION_LEVEL = IsolationLevel.Read Committed;31 public static System.Data.IsolationLevel ISOLATION_LEVEL = IsolationLevel.ReadUncommitted; 32 32 33 33 public static System.Transactions.IsolationLevel ISOLATION_LEVEL_SCOPE = 34 System.Transactions.IsolationLevel.Read Committed;34 System.Transactions.IsolationLevel.ReadUncommitted; 35 35 public static int HEARTBEAT_MAX_DIF = 120; // value in seconds 36 36 public static int JOB_TIME_TO_LIVE = 5; -
branches/3.2/sources/HeuristicLab.Hive.Contracts/3.2/BusinessObjects/ClientDto.cs
r3203 r3931 39 39 public int NrOfFreeCores { get; set; } 40 40 [DataMember] 41 public int CpuSpeedPerCore { get; set; }41 public int? CpuSpeedPerCore { get; set; } 42 42 [DataMember] 43 43 public int Memory { get; set; } … … 45 45 public int FreeMemory { get; set; } 46 46 [DataMember] 47 public DateTime Login { get; set; }47 public DateTime? Login { get; set; } 48 48 [DataMember] 49 49 public State State { get; set; }
Note: See TracChangeset
for help on using the changeset viewer.