Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/21/13 23:08:47 (11 years ago)
Author:
ascheibe
Message:

#1042

  • applied mkommends progress view patch
  • adapted Hive views accordingly
  • made some minor improvements (more to come...)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.Hive/3.3/HiveClient.cs

    r9456 r9893  
    265265      try {
    266266        refreshableJob.IsProgressing = true;
    267         refreshableJob.Progress = new Progress("Connecting to server...");
     267        refreshableJob.Progress.Start("Connecting to server...");
    268268        IEnumerable<string> resourceNames = ToResourceNameList(refreshableJob.Job.ResourceNames);
    269269        var resourceIds = new List<Guid>();
     
    424424      var hiveExperiment = refreshableJob.Job;
    425425      refreshableJob.IsProgressing = true;
    426       refreshableJob.Progress = new Progress();
    427426      TaskDownloader downloader = null;
    428427
     
    431430        IEnumerable<LightweightTask> allTasks;
    432431
    433         refreshableJob.Progress.Status = "Connecting to Server...";
    434432        // fetch all task objects to create the full tree of tree of HiveTask objects
    435         refreshableJob.Progress.Status = "Downloading list of tasks...";
     433        refreshableJob.Progress.Start("Downloading list of tasks...");
    436434        allTasks = HiveServiceLocator.Instance.CallHiveService(s => s.GetLightweightJobTasksWithoutStateLog(hiveExperiment.Id));
    437435        totalJobCount = allTasks.Count();
Note: See TracChangeset for help on using the changeset viewer.