Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/24/11 14:30:55 (13 years ago)
Author:
ascheibe
Message:

#1233

  • added view for displaying jobs
  • improved slave ui
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Views/3.4/SlaveItem.cs

    r6257 r6263  
    9292      try {
    9393        pipeProxy = pipeFactory.CreateChannel();
    94         pipeProxy.Subscribe();
    95         return true;
     94        StatusCommons st = pipeProxy.Subscribe();
     95        if (st != null) {
     96          OnStatusChanged(st);
     97          return true;
     98        } else {
     99          return false;
     100        }
    96101      }
    97102      catch (Exception) {
Note: See TracChangeset for help on using the changeset viewer.