Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/28/10 17:48:10 (14 years ago)
Author:
cneumuel
Message:

HiveExperiment is now able to send IOptimizers of an Experiment and receive the calculated result (#1115)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/JobManager.cs

    r4116 r4119  
    223223
    224224    public ResponseObject<JobDto> GetLastJobResultOf(Guid jobId) {
    225       ResponseObject<JobDto> result =
    226         new ResponseObject<JobDto>();
    227 
    228       result.Obj =
    229         GetLastJobResult(jobId);
    230       result.Success =
    231         result.Obj != null;
     225      ResponseObject<JobDto> result = new ResponseObject<JobDto>();
     226
     227      result.Obj = GetLastJobResult(jobId);
     228      result.Success = result.Obj != null;
    232229
    233230      return result;
     
    263260      response.Obj.JobInfo = job;
    264261
    265       response.Obj.SerializedJobData =
    266         DaoLocator.JobDao.GetBinaryJobFile(jobId);
     262      response.Obj.SerializedJobData = DaoLocator.JobDao.GetBinaryJobFile(jobId);
    267263
    268264      return response;
Note: See TracChangeset for help on using the changeset viewer.