Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/17/10 10:26:55 (14 years ago)
Author:
cneumuel
Message:
  • Refactored HL.Hive.Experiment. JobItems are not called HiveJobs and OptimizerJobs do not contain a hierarchy anymore.
  • Dynamic generation of jobs on a slave are not reflected on the client user interface.
  • Optimizer-Trees are now strictly synchronized with the HiveJob-Trees (also the ComputeInParallel property is taken into account when the Child HiveJobs are created)
  • Improved the way a class can report progress and lock the UI (IProgressReporter, IProgress, Progress, ProgressView)
  • Changes were made to the config-files, so that server and clients work with blade12.hpc.fh-hagenberg.at
  • Lots of small changes and bugfixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Contracts/3.3/Interfaces/ILifecycleManager.cs

    r1468 r4423  
    2626using HeuristicLab.DataAccess.Interfaces;
    2727
    28 namespace HeuristicLab.Hive.Contracts.Interfaces {   
     28namespace HeuristicLab.Hive.Contracts.Interfaces {
    2929  /// <summary>
    3030  /// Manages the lifecycle of the application
    3131  /// </summary>
    32   public interface ILifecycleManager {   
     32  public interface ILifecycleManager {
    3333    /// <summary>
    3434    /// Initializes the application
    3535    /// </summary>
    36     void Init();
    37 
    38     /// <summary>
    39     /// The server heartbeat
    40     /// </summary>
    41     void RegisterHeartbeat(EventHandler handler);
    42 
    43     /// <summary>
    44     /// The startup event
    45     /// </summary>
    46     void RegisterStartup(EventHandler handler);
    47 
    48     /// <summary>
    49     /// The shutdown event
    50     /// </summary>
    51     void RegisterShutdown(EventHandler handler);
     36    void Start();
    5237
    5338    /// <summary>
    5439    /// Shuts the application down
    5540    /// </summary>
    56     void Shutdown();
     41    void Stop();
     42
     43    /// <summary>
     44    /// The number of jobs which are transferred at the moment
     45    /// </summary>
     46    int JobsCurrentlyTransferring { get; set; }
     47
     48    event EventHandler ServerHeartbeat;
     49
     50    event EventHandler Started;
     51
     52    event EventHandler Stopped;
    5753  }
    5854}
Note: See TracChangeset for help on using the changeset viewer.