- Timestamp:
- 06/04/09 17:34:42 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Hive.Client.Core/3.2/ClientConsoleService
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Client.Core/3.2/ClientConsoleService/ClientConsoleCommunicator.cs
r1379 r2009 8 8 using HeuristicLab.Hive.Client.Common; 9 9 using HeuristicLab.Hive.Contracts; 10 using Calendar; 10 11 11 12 namespace HeuristicLab.Hive.Client.Core.ClientConsoleService { … … 32 33 public void ShutdownClient() { 33 34 MessageQueue.GetInstance().AddMessage(MessageContainer.MessageType.Shutdown); 35 } 36 37 public void SetUptimeCalendar(List<Appointment> appointments) { 38 UptimeManager.Instance.Appointments = appointments; 39 } 40 41 public List<Appointment> GetUptimeCalendar() { 42 return UptimeManager.Instance.Appointments; 34 43 } 35 44 -
trunk/sources/HeuristicLab.Hive.Client.Core/3.2/ClientConsoleService/Interfaces/IClientConsoleCommunicator.cs
r1132 r2009 25 25 using System.Text; 26 26 using System.ServiceModel; 27 using Calendar; 27 28 28 29 namespace HeuristicLab.Hive.Client.Core.ClientConsoleService.Interfaces { … … 60 61 [OperationContract] 61 62 void ShutdownClient(); 63 64 [OperationContract] 65 void SetUptimeCalendar(List<Appointment> appointments); 66 67 [OperationContract] 68 List<Appointment> GetUptimeCalendar(); 69 62 70 } 63 71 }
Note: See TracChangeset
for help on using the changeset viewer.