Changeset 2009
- Timestamp:
- 06/04/09 17:34:42 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Hive.Client.Core/3.2
- Files:
-
- 3 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 } -
trunk/sources/HeuristicLab.Hive.Client.Core/3.2/HeuristicLab.Hive.Client.Core-3.2.csproj
r1715 r2009 66 66 </PropertyGroup> 67 67 <ItemGroup> 68 <Reference Include="Calendar.DayView, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 69 <SpecificVersion>False</SpecificVersion> 70 <HintPath>..\..\HeuristicLab.Hive.Client.Common\3.2\Calendar.DayView.dll</HintPath> 71 </Reference> 68 72 <Reference Include="System" /> 69 73 <Reference Include="System.Core"> … … 94 98 <Compile Include="ConfigurationManager\ClientStatusInfo.cs" /> 95 99 <Compile Include="ConfigurationManager\ConfigManager.cs" /> 100 <Compile Include="ConfigurationManager\UptimeManager.cs" /> 96 101 <Compile Include="Core.cs" /> 97 102 <Compile Include="CoreApplication.cs" />
Note: See TracChangeset
for help on using the changeset viewer.