Changeset 1365
- Timestamp:
- 03/19/09 14:45:53 (16 years ago)
- Location:
- trunk/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Contracts/Interfaces/IClientCommunicator.cs
r1133 r1365 36 36 Response Login(ClientInfo clientInfo); 37 37 [OperationContract] 38 ResponseHB SendHeartBeat(HeartBeatData hbData);38 ResponseHB ProcessHeartBeat(HeartBeatData hbData); 39 39 [OperationContract] 40 ResponseJob PullJob(Guid clientId);40 ResponseJob SendJob(Guid clientId); 41 41 [OperationContract] 42 ResponseResultReceived SendJobResult(Guid clientId,42 ResponseResultReceived ProcessJobResult(Guid clientId, 43 43 long jobId, 44 44 byte[] result, -
trunk/sources/HeuristicLab.Hive.Server.Core/ClientCommunicator.cs
r1340 r1365 168 168 /// <returns></returns> 169 169 // todo: new name for "SendHeartBeat" e.g. ProcessHeartBeat 170 public ResponseHB SendHeartBeat(HeartBeatData hbData) {170 public ResponseHB ProcessHeartBeat(HeartBeatData hbData) { 171 171 ResponseHB response = new ResponseHB(); 172 172 … … 224 224 /// <param name="clientId"></param> 225 225 /// <returns></returns> 226 public ResponseJob PullJob(Guid clientId) {226 public ResponseJob SendJob(Guid clientId) { 227 227 ResponseJob response = new ResponseJob(); 228 228 … … 251 251 /// <param name="finished"></param> 252 252 /// <returns></returns> 253 public ResponseResultReceived SendJobResult(Guid clientId,253 public ResponseResultReceived ProcessJobResult(Guid clientId, 254 254 long jobId, 255 255 byte[] result, -
trunk/sources/HeuristicLab.Hive.Server.Core/ClientFacade.cs
r1133 r1365 40 40 } 41 41 42 public ResponseHB SendHeartBeat(HeartBeatData hbData) {43 return clientCommunicator. SendHeartBeat(hbData);42 public ResponseHB ProcessHeartBeat(HeartBeatData hbData) { 43 return clientCommunicator.ProcessHeartBeat(hbData); 44 44 } 45 45 46 public ResponseJob PullJob(Guid clientId) {47 return clientCommunicator. PullJob(clientId);46 public ResponseJob SendJob(Guid clientId) { 47 return clientCommunicator.SendJob(clientId); 48 48 } 49 49 50 public ResponseResultReceived SendJobResult(Guid clientId,50 public ResponseResultReceived ProcessJobResult(Guid clientId, 51 51 long jobId, 52 52 byte[] result, … … 54 54 Exception exception, 55 55 bool finished) { 56 return clientCommunicator. SendJobResult(clientId, jobId, result, percentage, exception, finished);56 return clientCommunicator.ProcessJobResult(clientId, jobId, result, percentage, exception, finished); 57 57 } 58 58
Note: See TracChangeset
for help on using the changeset viewer.