Changeset 5314 for branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave/3.4/ServiceContracts
- Timestamp:
- 01/17/11 20:03:46 (14 years ago)
- Location:
- branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave/3.4/ServiceContracts
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave/3.4/ServiceContracts/ISlaveCommunication.cs
r5156 r5314 21 21 22 22 using System.ServiceModel; 23 using HeuristicLab.Clients.Hive.Salve;24 23 25 24 namespace HeuristicLab.Clients.Hive.Slave.ServiceContracts { … … 34 33 bool Unsubscribe(); 35 34 35 36 //commands from gui to slave core 37 [OperationContract] 38 void Restart(); 39 40 [OperationContract] 41 void HardPause(); 42 43 [OperationContract] 44 void SoftPause(); 45 46 [OperationContract] 47 void ShutdownSlave(); 48 49 50 //callbacks 36 51 [OperationContract] 37 52 void LogMessage(string message); … … 42 57 [OperationContract] 43 58 void Shutdown(); 44 45 59 } 46 60 } -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave/3.4/ServiceContracts/ISlaveCommunicationCallbacks.cs
r5156 r5314 21 21 22 22 using System.ServiceModel; 23 using HeuristicLab.Clients.Hive.S alve;23 using HeuristicLab.Clients.Hive.Slave; 24 24 25 25 namespace HeuristicLab.Clients.Hive.Slave.ServiceContracts {
Note: See TracChangeset
for help on using the changeset viewer.