Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/06/11 18:33:03 (13 years ago)
Author:
ascheibe
Message:

#1233

  • code cleanups for slave review
  • added switch between privileged and unprivileged sandbox
  • removed childjob management because it's not used
File:
1 edited

Legend:

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

    r6110 r6371  
    2121
    2222using System;
    23 using System.Collections.Generic;
    24 using HeuristicLab.Common;
    2523using HeuristicLab.Core;
    2624
     
    4341    bool ComputeInParallel { get; set; }
    4442
    45     /// <summary>
    46     /// If this is set to true, the job should be Resumed with the child-jobs attatched instead of Started
    47     /// </summary>
    48     bool CollectChildJobs { get; set; }
    4943
    5044    void Prepare();
     
    5549
    5650    void Stop();
    57 
    58     void Resume(IEnumerable<IJob> childJobs);
    5951
    6052    event EventHandler ComputeInParallelChanged;
     
    7163
    7264    event EventHandler JobStarted;
    73 
    74     /// <summary>
    75     /// When this event occurs the job wants to sleep until all his child jobs are finished
    76     /// </summary>
    77     event EventHandler WaitForChildJobs;
    78 
    79     /// <summary>
    80     /// This event will be fired when the job wants to have a child-job to be computed
    81     /// </summary>
    82     event EventHandler<EventArgs<IJob>> NewChildJob;
    83 
    84     /// <summary>
    85     /// Will be fired when job wants all child-jobs to be deleted from hive
    86     /// </summary>
    87     event EventHandler DeleteChildJobs;
    88 
    89 
    9065  }
    9166}
Note: See TracChangeset for help on using the changeset viewer.