Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/26/12 11:12:57 (12 years ago)
Author:
ascheibe
Message:

#1950

  • added more aggressive locking so that the views don't read run collections that get modified in the meantime
  • start downloading of tasks after the job has been uploaded completely
  • fixed exceptions that got thrown when waiting for the threads that upload the tasks
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.Hive.Views/3.3/HiveTasks/OptimizerHiveTaskView.cs

    r8884 r8939  
    5353    protected override void Job_ItemChanged(object sender, EventArgs e) {
    5454      if (Content != null && Content.Task != null && Content.ItemTask.Item != null) {
    55         runCollectionViewHost.Content = Content.ItemTask.Item.Runs;
     55        Content.ExecuteReadActionOnItemTask(new Action(delegate() {
     56          runCollectionViewHost.Content = Content.ItemTask.Item.Runs;
     57        }));
    5658      } else {
    5759        runCollectionViewHost.Content = null;
Note: See TracChangeset for help on using the changeset viewer.