- Timestamp:
- 03/12/10 10:57:21 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.Core/3.2/ClientFacade.cs
r2904 r3011 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 46 46 #region IClientCommunicator Members 47 47 48 public Response Login(Client Info clientInfo) {48 public Response Login(ClientDto clientInfo) { 49 49 return clientCommunicator.Login(clientInfo); 50 50 } … … 58 58 } 59 59 60 public ResponseSerializedJob SendSerializedJob(Guid clientId) {60 /*public ResponseSerializedJob SendSerializedJob(Guid clientId) { 61 61 return clientCommunicator.SendSerializedJob(clientId); 62 } 62 } */ 63 63 64 64 public ResponseResultReceived StoreFinishedJobResult(Guid clientId, … … 78 78 } 79 79 80 public ResponsePlugin SendPlugins(List<HivePluginInfo > pluginList) {80 public ResponsePlugin SendPlugins(List<HivePluginInfoDto> pluginList) { 81 81 return clientCommunicator.SendPlugins(pluginList); 82 82 } … … 120 120 } 121 121 122 public Stream SendStreamedPlugins(List<HivePluginInfo > pluginList) {122 public Stream SendStreamedPlugins(List<HivePluginInfoDto> pluginList) { 123 123 return 124 124 new StreamedObject<ResponsePlugin>(
Note: See TracChangeset
for help on using the changeset viewer.