Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/08/11 00:04:16 (13 years ago)
Author:
cneumuel
Message:

#1233

  • locking for childHiveJobs in OptimizerHiveJob avoid multi threaded access issues
  • added IsPrivileged to gui
  • minor changes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/ServiceClients/HiveExperiment.cs

    r6372 r6381  
    3333      get { return useLocalPlugins; }
    3434      set { useLocalPlugins = value; }
     35    }
     36
     37    private bool isPrivileged;
     38    public bool IsPrivileged {
     39      get { return isPrivileged; }
     40      set { isPrivileged = value; }
    3541    }
    3642
     
    8995      this.ResourceNames = "HEAL";
    9096      this.HiveJobs = new ItemCollection<HiveJob>();
     97      this.DateCreated = DateTime.Now;
    9198    }
    9299
     
    103110      this.UseLocalPlugins = original.UseLocalPlugins;
    104111      this.ExecutionTime = original.ExecutionTime;
     112      this.IsPrivileged = original.IsPrivileged;
    105113    }
    106114    public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset for help on using the changeset viewer.