- Timestamp:
- 06/09/11 12:52:48 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/MPI/HeuristicLab.MPIAlgorithmRunner/3.3/IAlgorithmBroker.cs
r6398 r6401 28 28 using HeuristicLab.Operators.MPISupport; 29 29 using HeuristicLab.Core; 30 using System.IO; 30 31 31 32 namespace HeuristicLab.MPIAlgorithmRunner { … … 33 34 public interface IAlgorithmBroker { 34 35 [OperationContract] 35 void TransmitAlgorithm(MPITransportWrapper<IAlgorithm> algorithm, int updateInterval); 36 void SetUpdateInterval(int updateInterval); 37 38 [OperationContract] 39 void TransmitAlgorithm(Stream stream); 36 40 37 41 [OperationContract] 38 MPITransportWrapper<ItemList<ResultCollection>>GetResults();42 Stream GetResults(); 39 43 40 44 [OperationContract]
Note: See TracChangeset
for help on using the changeset viewer.