Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/15/09 15:56:08 (15 years ago)
Author:
msteinbi
Message:

Implementing Lifecycle Management (#453)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.Core/JobManager.cs

    r1139 r1141  
    2828using HeuristicLab.Hive.Contracts;
    2929using HeuristicLab.Hive.Server.Core.InternalInterfaces.DataAccess;
     30using HeuristicLab.Hive.Server.Core.InternalInterfaces;
    3031
    3132namespace HeuristicLab.Hive.Server.Core {
    32   class JobManager: IJobManager {
     33  class JobManager: IJobManager, IInternalJobManager {
    3334
    3435    IJobAdapter jobAdapter;
     
    4849    }
    4950
    50     private void resetJobsDependingOnResults(Job job) {
     51    public void ResetJobsDependingOnResults(Job job) {
    5152      List<JobResult> allJobResults = new List<JobResult>(jobResultAdapter.GetAll());
    5253      JobResult lastJobResult = null;
     
    7778      foreach (Job curJob in allJobs) {
    7879        if (curJob.State == State.calculating) {
    79           resetJobsDependingOnResults(curJob);
     80          ResetJobsDependingOnResults(curJob);
    8081        }
    8182      }
Note: See TracChangeset for help on using the changeset viewer.