Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Core/3.2/ClientFacade.cs @ 1632

Last change on this file since 1632 was 1600, checked in by msteinbi, 15 years ago

Added delegate for ProcessSnapshot method (#531)

File size: 2.6 KB
RevLine 
[1101]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Collections.Generic;
24using System.Linq;
25using System.Text;
26using HeuristicLab.Hive.Contracts.Interfaces;
27using HeuristicLab.Hive.Contracts.BusinessObjects;
28using HeuristicLab.Hive.Contracts;
[1445]29using HeuristicLab.PluginInfrastructure;
[1101]30
31namespace HeuristicLab.Hive.Server.Core {
32  class ClientFacade: IClientFacade {
33
34    private IClientCommunicator clientCommunicator =
35      ServiceLocator.GetClientCommunicator();
36
37    #region IClientCommunicator Members
38
39    public Response Login(ClientInfo clientInfo) {
40      return clientCommunicator.Login(clientInfo);
41    }
42
[1365]43    public ResponseHB ProcessHeartBeat(HeartBeatData hbData) {
44      return clientCommunicator.ProcessHeartBeat(hbData);
[1101]45    }
46
[1365]47    public ResponseJob SendJob(Guid clientId) {
48      return clientCommunicator.SendJob(clientId);
[1101]49    }
50
[1374]51    public ResponseResultReceived StoreFinishedJobResult(Guid clientId,
[1449]52      Guid jobId,
[1103]53      byte[] result,
[1133]54      double percentage,
[1374]55      Exception exception) {
56      return clientCommunicator.StoreFinishedJobResult(clientId, jobId, result, percentage, exception);
[1101]57    }
58
59    public Response Logout(Guid clientId) {
60      return clientCommunicator.Logout(clientId);
61    }
62
[1449]63    public Response IsJobStillNeeded(Guid jobId) {
[1369]64      return clientCommunicator.IsJobStillNeeded(jobId);
65    }
66
[1593]67    public ResponsePlugin SendPlugins(List<HivePluginInfo> pluginList) {
[1369]68      return clientCommunicator.SendPlugins(pluginList);
69    }
70
[1449]71    public ResponseResultReceived ProcessSnapshot(Guid clientId, Guid jobId, byte[] result, double percentage, Exception exception) {
[1600]72      return clientCommunicator.ProcessSnapshot(clientId, jobId, result, percentage, exception);
[1374]73    }
74
[1101]75    #endregion
76  }
77}
Note: See TracBrowser for help on using the repository browser.