- Timestamp:
- 05/28/09 18:38:46 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Contracts/3.2/Interfaces/IClientFacade.cs
r1101 r1939 24 24 using System.Linq; 25 25 using System.Text; 26 using System.ServiceModel; 27 using System.IO; 28 using HeuristicLab.Hive.Contracts.BusinessObjects; 26 29 27 30 namespace HeuristicLab.Hive.Contracts.Interfaces { 31 [ServiceContract] 28 32 public interface IClientFacade: IClientCommunicator { 33 [OperationContract] 34 Stream SendStreamedJob(Guid clientId); 35 36 [OperationContract] 37 Stream SendStreamedPlugins(List<HivePluginInfo> pluginList); 38 39 [OperationContract] 40 ResponseResultReceived StoreFinishedJobResultStreamed(Stream stream); 41 42 [OperationContract] 43 ResponseResultReceived ProcessSnapshotStreamed(Stream stream); 29 44 } 30 45 }
Note: See TracChangeset
for help on using the changeset viewer.