Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Slave.Core/3.3/SlaveConsoleService/SlaveConsoleCommunicator.cs @ 4260

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

forgot some files (#1159)

File size: 1.6 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Hive.Slave.Core.ClientConsoleService.Interfaces;
6using HeuristicLab.Hive.Slave.Core.ConfigurationManager;
7using HeuristicLab.Hive.Slave.Communication;
8using HeuristicLab.Hive.Slave.Common;
9using HeuristicLab.Hive.Contracts;
10using HeuristicLab.Calendar;
11
12namespace HeuristicLab.Hive.Slave.Core.ClientConsoleService {
13  public class SlaveConsoleCommunicator: ISlaveConsoleCommunicator {
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.