Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment/3.3/JobItemList.cs @ 4133

Last change on this file since 4133 was 4133, checked in by cneumuel, 14 years ago
  • Made HiveExperiment storable, so that a running HiveExperiment can be disconnected, stored and later resumed. (#1115)
  • Added Log to each JobItem (#1115)
File size: 765 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Core;
6using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
7using HeuristicLab.Hive.Contracts.BusinessObjects;
8
9namespace HeuristicLab.Hive.Experiment {
10  [Item("JobItem List", "Represents a list of hive jobs.")]
11  [StorableClass]
12  public class JobItemList : ItemList<JobItem> {
13    public JobItemList() : base() { }
14    public JobItemList(int capacity) : base(capacity) { }
15    public JobItemList(IEnumerable<JobItem> collection) : base(collection) { }
16
17    public override Common.IDeepCloneable Clone(Common.Cloner cloner) {
18      JobItemList clone = (JobItemList)base.Clone(cloner);
19      return clone;
20    }
21  }
22}
Note: See TracBrowser for help on using the repository browser.