Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/StateLogListList.cs @ 6419

Last change on this file since 6419 was 6419, checked in by cneumuel, 13 years ago

#1233

  • created events when statelog changed
  • fixed memory leak in hiveengine
  • extended timeout for long running transactions and database contexts (when jobdata is stored)
  • replaced random guids in database with sequential guids for performance reasons
  • minor fixes and cleanups
File size: 765 bytes
Line 
1using System.Collections.Generic;
2using HeuristicLab.Common;
3using HeuristicLab.Core;
4using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
5
6namespace HeuristicLab.Clients.Hive {
7  [StorableClass]
8  public class StateLogListList : ItemList<StateLogList> {
9
10    [StorableConstructor]
11    protected StateLogListList(bool deserializing) : base(deserializing) { }
12    public StateLogListList() : base() { }
13    protected StateLogListList(StateLogListList original, Cloner cloner) : base(original, cloner) { }
14    public StateLogListList(IEnumerable<StateLogList> collection)
15      : base(collection) {
16    }
17    public override IDeepCloneable Clone(Cloner cloner) {
18      return new StateLogListList(this, cloner);
19    }
20
21  }
22}
Note: See TracBrowser for help on using the repository browser.