Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/03/11 17:08:54 (13 years ago)
Author:
cneumuel
Message:

#1233

  • renamed engines to executors
  • changed locking in StartJobInAppDomain
  • avoid destruction of proxy object after 5 minutes for Slave.Core
  • added JobStarted event and fixed ExecutionStateChanged and ExecutionTimeChanged
  • slaves which are moved to another slavegroup will pause their jobs now, if they must not calculate them
File:
1 edited

Legend:

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

    r6033 r6110  
    122122    public abstract void Resume(IEnumerable<IJob> childJobs);
    123123
     124    public event EventHandler JobStarted;
     125    protected virtual void OnJobStarted() {
     126      EventHandler handler = JobStarted;
     127      if (handler != null) handler(this, EventArgs.Empty);
     128    }
     129
    124130    public event EventHandler JobStopped;
    125131    protected virtual void OnJobStopped() {
Note: See TracChangeset for help on using the changeset viewer.