Changeset 4305 for branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Slave.Core/3.3/Core.cs
- Timestamp:
- 08/24/10 18:37:04 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Slave.Core/3.3/Core.cs
r4269 r4305 30 30 using HeuristicLab.Hive.Slave.Common; 31 31 using HeuristicLab.Hive.Slave.Communication; 32 using HeuristicLab.Hive.Slave.Communication.ServerService;33 32 using HeuristicLab.Hive.Slave.Core.ClientConsoleService; 34 33 using HeuristicLab.Hive.Slave.Core.ConfigurationManager; … … 36 35 using HeuristicLab.Hive.Slave.ExecutionEngine; 37 36 using HeuristicLab.Tracing; 37 using HeuristicLab.Hive.Slave.Communication.SlaveService; 38 38 39 39 namespace HeuristicLab.Hive.Slave.Core { … … 76 76 //Register all Wcf Service references 77 77 wcfService = WcfService.Instance; 78 wcfService.LoginCompleted += new EventHandler<LoginCompletedEventArgs>(wcfService_LoginCompleted);79 78 wcfService.GetJobCompleted += new EventHandler<GetJobCompletedEventArgs>(wcfService_GetJobCompleted); 80 79 wcfService.GetFinishedJobResultCompleted += new EventHandler<StoreFinishedJobResultCompletedEventArgs>(wcfService_StoreFinishedJobResultCompleted); … … 417 416 wcfService.SetCalendarStatus(ConfigManager.Instance.GetClientInfo().Id, CalendarState.NotAllowedToFetch); 418 417 } 419 beat.InterruptHeartBeatThread();420 418 } 421 419
Note: See TracChangeset
for help on using the changeset viewer.