Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/30/10 13:56:28 (15 years ago)
Author:
cneumuel
Message:

Stabilization of Hive, Improvement HiveExperiment GUI (#1115)

File:
1 edited

Legend:

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

    r4120 r4121  
    6464    }
    6565
     66    public ResponseObject<JobDto> GetJobById(Guid jobId) {
     67      using (contextFactory.GetContext()) {
     68        return jobManager.GetJobById(jobId);
     69      }
     70    }
     71
    6672    public Response AbortJob(Guid jobId) {
    6773      using (contextFactory.GetContext()) {
     
    6975      }
    7076    }
    71 
    72     public ResponseObject<JobDto> GetJobById(Guid jobId) {
    73       using (contextFactory.GetContext()) {
    74         return jobManager.GetJobById(jobId);
    75       }
    76     }
    7777    #endregion
    7878  }
Note: See TracChangeset for help on using the changeset viewer.