Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/19/10 12:41:05 (14 years ago)
Author:
cneumuel
Message:

consolidated Response objects to use only StatusMessage with enums instead of strings.
removed Success property from Response. success is now represented by StatusMessage alone. (#1159)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3/Interfaces/ISlaveFacade.cs

    r4253 r4263  
    2727using System.IO;
    2828using HeuristicLab.Hive.Contracts.BusinessObjects;
     29using HeuristicLab.Hive.Contracts.ResponseObjects;
    2930
    3031namespace HeuristicLab.Hive.Contracts.Interfaces {
     
    3233  public interface ISlaveFacade: ISlaveCommunicator {
    3334    [OperationContract]
    34     Stream SendStreamedJob(Guid clientId);
     35    Stream GetStreamedJob(Guid clientId);
    3536
    3637    [OperationContract]
    37     Stream SendStreamedPlugins(List<HivePluginInfoDto> pluginList);
     38    Stream GetStreamedPlugins(List<HivePluginInfoDto> pluginList);
    3839
    3940    [OperationContract]
Note: See TracChangeset for help on using the changeset viewer.