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.Server/3.3/HeuristicLabHiveServerApplication.cs

    r4333 r4423  
    4545
    4646        lifecycleManager = ServiceLocator.GetLifecycleManager();
    47         lifecycleManager.Init();
     47        lifecycleManager.Start();
    4848
    4949        Form mainForm = new MainForm(GetBaseAddresses());
    5050        Application.Run();
     51       
    5152      } finally {
    5253        foreach (ServiceHost host in serviceHosts.Values) {
     
    5556        }
    5657        if (lifecycleManager != null)
    57           lifecycleManager.Shutdown();
     58          lifecycleManager.Stop();
    5859      }
    5960    }
Note: See TracChangeset for help on using the changeset viewer.