Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/17/11 20:03:46 (14 years ago)
Author:
ascheibe
Message:

#1233

  • added ItemView and Item for the Slave
  • added a Tray Icon App for data visualization and control of the slave windows service
  • added control methods to SlaveCommunication for controlling the slave core
  • fixed typo in namespace
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Tests/Mocks/MockJob.cs

    r5156 r5314  
    110110
    111111    public virtual void Prepare() {
    112       this.ExecutionState = Core.ExecutionState.Prepared;
     112      this.ExecutionState = HeuristicLab.Core.ExecutionState.Prepared;
    113113    }
    114114
     
    137137      }
    138138      catch (Exception e) {
    139         this.ExecutionState = Core.ExecutionState.Stopped;
     139        this.ExecutionState = HeuristicLab.Core.ExecutionState.Stopped;
    140140        OnJobFailed(e);
    141141      }
     
    143143
    144144    public virtual void Pause() {
    145       this.ExecutionState = Core.ExecutionState.Paused;
     145      this.ExecutionState = HeuristicLab.Core.ExecutionState.Paused;
    146146    }
    147147
    148148    public virtual void Stop() {
    149       ExecutionState = Core.ExecutionState.Stopped;
     149      ExecutionState = HeuristicLab.Core.ExecutionState.Stopped;
    150150    }
    151151
    152152    public virtual void Resume(IEnumerable<IJob> childJobs) {
    153       ExecutionState = Core.ExecutionState.Stopped;
     153      ExecutionState = HeuristicLab.Core.ExecutionState.Stopped;
    154154    }
    155155
Note: See TracChangeset for help on using the changeset viewer.