Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Client.Core/3.3/ClientConsoleService/ClientConsoleCommunicator.cs @ 4107

Last change on this file since 4107 was 4107, checked in by cneumuel, 14 years ago

migration from 3.2 to 3.3 completed. Hive Server and Client are now executable and as functional as they were in 3.2. (#1096)

File size: 1.6 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Hive.Client.Core.ClientConsoleService.Interfaces;
6using HeuristicLab.Hive.Client.Core.ConfigurationManager;
7using HeuristicLab.Hive.Client.Communication;
8using HeuristicLab.Hive.Client.Common;
9using HeuristicLab.Hive.Contracts;
10using HeuristicLab.Calendar;
11
12namespace HeuristicLab.Hive.Client.Core.ClientConsoleService {
13  public class ClientConsoleCommunicator: IClientConsoleCommunicator {
14    #region IClientConsoleCommunicator Members
15
16    public StatusCommons GetStatusInfos() {     
17        return ConfigManager.Instance.GetStatusForClientConsole();
18    }
19
20    public void SetConnection(ConnectionContainer container) {
21      ConfigManager.Instance.SetServerIPAndPort(container);
22      WcfService.Instance.Connect(container.IPAdress, container.Port);
23    }
24
25    public void Disconnect() {
26      WcfService.Instance.Disconnect();
27    }   
28
29    public ConnectionContainer GetCurrentConnection() {
30      return new ConnectionContainer { IPAdress = WcfService.Instance.ServerIP, Port = WcfService.Instance.ServerPort };
31    }
32
33    public void ShutdownClient() {
34      MessageQueue.GetInstance().AddMessage(MessageContainer.MessageType.Shutdown);
35    }   
36
37    public void SetUptimeCalendar(List<Appointment> appointments) {
38      UptimeManager.Instance.SetAppointments(true, false, appointments);
39    }
40
41    public List<Appointment> GetUptimeCalendar() {
42      return UptimeManager.Instance.AppContainer.Appointments;
43    }
44
45    #endregion
46  }
47}
Note: See TracBrowser for help on using the repository browser.