Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/20/18 14:32:16 (6 years ago)
Author:
jzenisek
Message:

#2839 preliminary integration of several HiveAdministrator related improvements from #2877 (full merge pending)

  • slaves and slave groups are sorted by name
  • slave state is indicated by different colors
  • number of contained slaves is shown for each group
  • CPU utilization is shown for each calculating slave
  • last heartbeat date is shown for each offline slave
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2839_HiveProjectManagement/HeuristicLab.Clients.Hive/3.3/HiveAdminClient.cs

    r15777 r15792  
    7777    private Dictionary<Guid, HashSet<Resource>> resourceAncestors;
    7878    public Dictionary<Guid, HashSet<Resource>> ResourceAncestors {
    79       get { return ResourceAncestors; }
     79      get { return resourceAncestors; }
    8080    }
    8181
    8282    private Dictionary<Guid, HashSet<Resource>> resourceDescendants;
    8383    public Dictionary<Guid, HashSet<Resource>> ResourceDescendants {
    84       get { return ResourceDescendants; }
     84      get { return resourceDescendants; }
    8585    }
    8686
     
    122122        });
    123123
    124         UpdateResourceGenealogy();
    125         UpdateProjectGenealogy();
     124        UpdateResourceGenealogy(resources);
     125        UpdateProjectGenealogy(projects);
    126126      }
    127127      catch {
     
    133133    }
    134134
    135     private void UpdateResourceGenealogy() {
     135    public void UpdateResourceGenealogy(IItemList<Resource> resources) {
    136136      resourceAncestors.Clear();
    137137      resourceDescendants.Clear();
     
    157157    }
    158158
    159     private void UpdateProjectGenealogy() {
     159    public void UpdateProjectGenealogy(IItemList<Project> projects) {
    160160      projectAncestors.Clear();
    161161      projectDescendants.Clear();
Note: See TracChangeset for help on using the changeset viewer.