Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/18/13 10:26:25 (12 years ago)
Author:
ascheibe
Message:

#2005

  • fixed naming of event handlers that were forgotten when the naming from experiment to job was changed
  • fixed some more memory leaks
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/UnloadJobs/HeuristicLab.Clients.Hive/3.3/HiveClient.cs

    r9170 r9173  
    4646
    4747    #region Properties
    48     private ItemCollection<RefreshableJob> jobs;
    49     public ItemCollection<RefreshableJob> Jobs {
     48    private HiveItemCollection<RefreshableJob> jobs;
     49    public HiveItemCollection<RefreshableJob> Jobs {
    5050      get { return jobs; }
    5151      set {
     
    8787
    8888    public void ClearHiveClient() {
     89      Jobs.ClearWithoutHiveDeletion();
    8990      foreach (var j in Jobs) {
    9091        if (j.RefreshAutomatically) {
    9192          j.RefreshAutomatically = false; // stop result polling
    92           j.Dispose();
    93         }
     93        }
     94        j.Dispose();
    9495      }
    9596      Jobs = null;
     97
    9698      if (onlinePlugins != null)
    9799        onlinePlugins.Clear();
Note: See TracChangeset for help on using the changeset viewer.