Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/07/11 11:44:15 (13 years ago)
Author:
ascheibe
Message:

#1233

  • added Pause/Stop/Abort mechanisms to the slave
  • added Pause to Jobs
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Hive/3.4/IJob.cs

    r5103 r5450  
    2222using System;
    2323using System.Collections.Generic;
     24using HeuristicLab.Common;
    2425using HeuristicLab.Core;
    25 using HeuristicLab.Common;
    2626
    2727namespace HeuristicLab.Hive {
     
    3131
    3232    ExecutionState ExecutionState { get; }
    33    
     33
    3434    /// <summary>
    3535    /// indicates wether it is possible to create childjobs from this job
     
    4747    /// </summary>
    4848    bool CollectChildJobs { get; set; }
    49    
     49
    5050    void Prepare();
    5151
     
    6767
    6868    event EventHandler JobStopped;
    69        
     69
     70    event EventHandler JobPaused;
     71
    7072    /// <summary>
    7173    /// When this event occurs the job wants to sleep until all his child jobs are finished
     
    8284    /// </summary>
    8385    event EventHandler DeleteChildJobs;
    84    
     86
    8587
    8688  }
Note: See TracChangeset for help on using the changeset viewer.