Changeset 1445
- Timestamp:
- 03/27/09 13:31:53 (16 years ago)
- Location:
- trunk/sources
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Contracts/Interfaces/IClientCommunicator.cs
r1374 r1445 26 26 using System.ServiceModel; 27 27 using HeuristicLab.Hive.Contracts.BusinessObjects; 28 using HeuristicLab.PluginInfrastructure; 28 29 29 30 namespace HeuristicLab.Hive.Contracts.Interfaces { … … 56 57 Response IsJobStillNeeded(long jobId); 57 58 [OperationContract] 58 ResponsePlugin SendPlugins(List< String> pluginList);59 ResponsePlugin SendPlugins(List<PluginInfo> pluginList); 59 60 } 60 61 } -
trunk/sources/HeuristicLab.Hive.Contracts/ResponsePlugin.cs
r1369 r1445 4 4 using System.Text; 5 5 using System.Runtime.Serialization; 6 using HeuristicLab.PluginInfrastructure; 6 7 7 8 namespace HeuristicLab.Hive.Contracts { … … 10 11 public class ResponsePlugin : Response { 11 12 [DataMember] 12 public byte[]Plugins { get; set; }13 public List<CachedPlugin> Plugins { get; set; } 13 14 } 14 15 } -
trunk/sources/HeuristicLab.Hive.Server.Core/ClientCommunicator.cs
r1377 r1445 34 34 using HeuristicLab.Hive.Server.Core.InternalInterfaces; 35 35 using System.Threading; 36 using HeuristicLab.PluginInfrastructure; 36 37 37 38 namespace HeuristicLab.Hive.Server.Core { … … 412 413 } 413 414 414 public ResponsePlugin SendPlugins(List< string> pluginList) {415 public ResponsePlugin SendPlugins(List<PluginInfo> pluginList) { 415 416 throw new NotImplementedException(); 416 417 } -
trunk/sources/HeuristicLab.Hive.Server.Core/ClientFacade.cs
r1374 r1445 27 27 using HeuristicLab.Hive.Contracts.BusinessObjects; 28 28 using HeuristicLab.Hive.Contracts; 29 using HeuristicLab.PluginInfrastructure; 29 30 30 31 namespace HeuristicLab.Hive.Server.Core { … … 64 65 } 65 66 66 public ResponsePlugin SendPlugins(List< string> pluginList) {67 public ResponsePlugin SendPlugins(List<PluginInfo> pluginList) { 67 68 return clientCommunicator.SendPlugins(pluginList); 68 69 }
Note: See TracChangeset
for help on using the changeset viewer.