Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/19/10 12:41:05 (14 years ago)
Author:
cneumuel
Message:

consolidated Response objects to use only StatusMessage with enums instead of strings.
removed Success property from Response. success is now represented by StatusMessage alone. (#1159)

File:
1 edited

Legend:

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

    r4170 r4263  
    2828using HeuristicLab.Hive.Contracts.BusinessObjects;
    2929using HeuristicLab.Hive.Server.DataAccess;
     30using HeuristicLab.Hive.Contracts.ResponseObjects;
    3031
    3132namespace HeuristicLab.Hive.Server.Core {
     
    6061    public ResponseObject<SerializedJob> GetLastSerializedResult(Guid jobId, bool requested, bool snapshot) {
    6162      using (contextFactory.GetContext(false)) {
    62         return jobManager.GetLastSerializedJobResultOf(jobId, requested, snapshot);
     63        return jobManager.GetLastSerializedResult(jobId, requested, snapshot);
    6364      }
    6465    }
     
    7778
    7879
    79     public ResponseObject<JobResultList> GetAllJobResults(IEnumerable<Guid> jobIds) {
     80    public ResponseObject<JobResultList> GetJobResults(IEnumerable<Guid> jobIds) {
    8081      using (contextFactory.GetContext(false)) {
    81         return jobManager.GetAllJobResults(jobIds);
     82        return jobManager.GetJobResults(jobIds);
    8283      }
    8384    }
Note: See TracChangeset for help on using the changeset viewer.