Changeset 5093 for branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts
- Timestamp:
- 12/13/10 14:13:15 (14 years ago)
- Location:
- branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3/ApplicationConstants.cs
r4914 r5093 31 31 /// ReadUncommitted to minimize deadlocks. 32 32 /// </summary> 33 public static System.Transactions.IsolationLevel ISOLATION_LEVEL_SCOPE = System.Transactions.IsolationLevel.Read Uncommitted;33 public static System.Transactions.IsolationLevel ISOLATION_LEVEL_SCOPE = System.Transactions.IsolationLevel.ReadCommitted; 34 34 35 35 public static int HEARTBEAT_MAX_DIF = 120; // value in seconds 36 36 37 public static int JOB_TIME_TO_LIVE = 5;37 public static int JOB_TIME_TO_LIVE = 20; 38 38 39 39 /// <summary> -
branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3/Interfaces/ILifecycleManager.cs
r5000 r5093 50 50 event EventHandler Stopped; 51 51 52 IEnumerable<PluginDescription> Plugins { get;} 52 IEnumerable<PluginDescription> Plugins { get; } 53 54 Dictionary<Guid, DateTime> LastHeartbeats { get; } 55 56 Dictionary<Guid, int> NewAssignedJobs { get; } 57 58 Dictionary<Guid, int> PendingJobs { get; } 53 59 54 60 byte[] ConfigurationFile { get; }
Note: See TracChangeset
for help on using the changeset viewer.