Changeset 5153 for branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts
- Timestamp:
- 12/21/10 18:16:24 (14 years ago)
- Location:
- branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3/ApplicationConstants.cs
r5093 r5153 33 33 public static System.Transactions.IsolationLevel ISOLATION_LEVEL_SCOPE = System.Transactions.IsolationLevel.ReadCommitted; 34 34 35 public static int HEARTBEAT_MAX_DIF = 120 ; // value in seconds35 public static int HEARTBEAT_MAX_DIF = 1200; // value in seconds 36 36 37 public static int JOB_TIME_TO_LIVE = 20;37 public static int JOB_TIME_TO_LIVE = 900; // heartbeats from the assigned slave 38 38 39 39 /// <summary> … … 45 45 /// Maximum number of jobs that the server should send/receive simultaniously 46 46 /// </summary> 47 public static int MAX_JOB_TRANSFER_COUNT = 6;47 public static int MAX_JOB_TRANSFER_COUNT = 8; 48 48 49 49 /// <summary> -
branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3/Interfaces/IClientFacade.cs
r4424 r5153 62 62 [OperationContract] 63 63 ResponseObject<JobDto> AddChildJob(Guid parentJobId, SerializedJob serializedJob); 64 65 [OperationContract] 66 Response DeleteJob(Guid jobId); 64 67 } 65 68 } -
branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3/Interfaces/IJobManager.cs
r4424 r5153 107 107 [OperationContract] 108 108 Response DeleteChildJobs(Guid jobId); 109 110 [OperationContract] 111 Response DeleteJob(Guid jobId); 109 112 } 110 113 } -
branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3/ResponseStatus.cs
r4424 r5153 81 81 DeleteHiveExperiment_Failed, 82 82 DeleteChildJobs_Failed, 83 DeleteJob_Failed, 83 84 } 84 85 } -
branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3/WcfServicePool.cs
r4914 r5153 44 44 public string Password { 45 45 get { return password; } 46 set { hostAddress= value; }46 set { password = value; } 47 47 } 48 48
Note: See TracChangeset
for help on using the changeset viewer.