Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/27/09 13:31:53 (15 years ago)
Author:
msteinbi
Message:

Changed interface for plugin transfer (#531)

Location:
trunk/sources/HeuristicLab.Hive.Contracts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Contracts/Interfaces/IClientCommunicator.cs

    r1374 r1445  
    2626using System.ServiceModel;
    2727using HeuristicLab.Hive.Contracts.BusinessObjects;
     28using HeuristicLab.PluginInfrastructure;
    2829
    2930namespace HeuristicLab.Hive.Contracts.Interfaces {
     
    5657    Response IsJobStillNeeded(long jobId);
    5758    [OperationContract]
    58     ResponsePlugin SendPlugins(List<String> pluginList);
     59    ResponsePlugin SendPlugins(List<PluginInfo> pluginList);
    5960  }
    6061}
  • trunk/sources/HeuristicLab.Hive.Contracts/ResponsePlugin.cs

    r1369 r1445  
    44using System.Text;
    55using System.Runtime.Serialization;
     6using HeuristicLab.PluginInfrastructure;
    67
    78namespace HeuristicLab.Hive.Contracts {
     
    1011  public class ResponsePlugin : Response {
    1112    [DataMember]
    12     public byte[] Plugins { get; set; }
     13    public List<CachedPlugin> Plugins { get; set; }
    1314  }
    1415}
Note: See TracChangeset for help on using the changeset viewer.