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 @ 4320

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

made slave-console service configurable via xml

File size: 1.5 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Hive.Slave.Core.SlaveConsoleService.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.SlaveConsoleService {
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.SetServerIP(container);
22      WcfService.Instance.Connect(container.IPAdress);
23    }
24
25    public void Disconnect() {
26      WcfService.Instance.Disconnect();
27    }   
28
29    public ConnectionContainer GetCurrentConnection() {
30      return new ConnectionContainer { IPAdress = WcfService.Instance.ServerIP };
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.