Changeset 838
- Timestamp:
- 11/27/08 15:28:29 (16 years ago)
- Location:
- trunk/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Contracts/Interfaces/IClientCommunicator.cs
r791 r838 40 40 ResponseJob PullJob(Guid clientId); 41 41 [OperationContract] 42 Response SendJobResult(JobResult Result, bool finished);42 ResponseResultReceived SendJobResult(JobResult Result, bool finished); 43 43 [OperationContract] 44 44 Response Logout(Guid clientId); -
trunk/sources/HeuristicLab.Hive.Contracts/ResponseResultReceived.cs
r837 r838 28 28 namespace HeuristicLab.Hive.Contracts { 29 29 [DataContract] 30 class ResponseResultReceived : Response {30 public class ResponseResultReceived : Response { 31 31 [DataMember] 32 32 public long JobId { get; set; } -
trunk/sources/HeuristicLab.Hive.Server.Core/ClientCommunicator.cs
r823 r838 66 66 } 67 67 68 public Response SendJobResult(JobResult Result, bool finished) {69 Response response = new Response();68 public ResponseResultReceived SendJobResult(JobResult Result, bool finished) { 69 ResponseResultReceived response = new ResponseResultReceived(); 70 70 response.Success = true; 71 71 response.StatusMessage = "Thanks for calculating"; 72 response.JobId = Result.JobId; 72 73 73 74 return response;
Note: See TracChangeset
for help on using the changeset viewer.