Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment/3.3/Jobs/JobList.cs @ 4368

Last change on this file since 4368 was 4368, checked in by cneumuel, 14 years ago
  • created HiveClient which shows an overview over all submitted HiveExperiments
  • its possible to download all submitted HiveExperiments including results
  • Experiments are now sent as a whole to the Hive and the Hive-Slaves take care of creating child-jobs (if necessary). The parent job is then paused and will be reactivated when all child-jobs are finished
  • WcfService-Clients are now consistently managed by WcfServicePool which allows to use IDisposable-Pattern and always keeps exactly one proxy-object until all callers disposed them.
  • created ProgressView which is able to lock a View and display progress of an action. It also allows to simulate progress if no progress-information is available so that users don't get too nervous while waiting.
File size: 719 bytes
Line 
1using System;
2using System.Collections.Generic;
3using HeuristicLab.Core;
4using HeuristicLab.Hive.JobBase;
5using HeuristicLab.Optimization;
6using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
7
8namespace HeuristicLab.Hive.Experiment.Jobs {
9  [Item("IJob List", "Represents a list of hive jobs.")]
10  [StorableClass]
11  public class JobList : ItemList<IJob> {
12    public JobList() : base() { }
13    public JobList(int capacity) : base(capacity) { }
14    public JobList(IEnumerable<IJob> collection) : base(collection) { }
15
16    public override Common.IDeepCloneable Clone(Common.Cloner cloner) {
17      JobItemList clone = (JobItemList)base.Clone(cloner);
18      return clone;
19    }
20  }
21}
Note: See TracBrowser for help on using the repository browser.