Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/09/11 12:52:48 (13 years ago)
Author:
svonolfe
Message:

Implemented result and algorithm streaming (#1542)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/MPI/HeuristicLab.MPIAlgorithmRunner/3.3/IAlgorithmBroker.cs

    r6398 r6401  
    2828using HeuristicLab.Operators.MPISupport;
    2929using HeuristicLab.Core;
     30using System.IO;
    3031
    3132namespace HeuristicLab.MPIAlgorithmRunner {
     
    3334  public interface IAlgorithmBroker {
    3435    [OperationContract]
    35     void TransmitAlgorithm(MPITransportWrapper<IAlgorithm> algorithm, int updateInterval);
     36    void SetUpdateInterval(int updateInterval);
     37   
     38    [OperationContract]
     39    void TransmitAlgorithm(Stream stream);
    3640
    3741    [OperationContract]
    38     MPITransportWrapper<ItemList<ResultCollection>> GetResults();
     42    Stream GetResults();
    3943
    4044    [OperationContract]
Note: See TracChangeset for help on using the changeset viewer.