- Timestamp:
- 04/03/09 14:22:14 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.Core/ExecutionEngineFacade.cs
r1485 r1509 40 40 } 41 41 42 public Response RequestSnapshot(Guid jobId) { 43 return jobManager.RequestSnapshot(jobId); 44 } 45 46 public ResponseObject<JobResult> GetLastResult(Guid jobId, bool requested) { 47 return jobManager.GetLastJobResultOf(jobId, requested); 48 } 49 50 public Response AbortJob(Guid jobId) { 51 return jobManager.AbortJob(jobId); 52 } 53 42 54 #endregion 43 55 }
Note: See TracChangeset
for help on using the changeset viewer.