Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/05/15 17:09:10 (9 years ago)
Author:
ascheibe
Message:

#2353

  • improved performance of status page
  • fixed code formatting and usings
  • simplified some expressions
Location:
trunk/sources/HeuristicLab.Services.Hive/3.3/Interfaces
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Services.Hive/3.3/Interfaces/IHiveDao.cs

    r12012 r12146  
    150150
    151151    #region Statistics Methods
    152     Dictionary<Guid, int> GetWaitingTasksByUser();
    153152    Dictionary<Guid, int> GetWaitingTasksByUserForResources(List<Guid> resourceIds);
    154     Dictionary<Guid, int> GetCalculatingTasksByUser();
    155153    Dictionary<Guid, int> GetCalculatingTasksByUserForResources(List<Guid> resourceIds);
    156154    DT.Statistics GetStatistic(Guid id);
  • trunk/sources/HeuristicLab.Services.Hive/3.3/Interfaces/IOptimizedHiveDao.cs

    r12012 r12146  
    6565    IEnumerable<Guid> GetAssignedResourceIds(Guid jobId);
    6666    #endregion
     67
     68    #region Website Methods
     69
     70    IEnumerable<Guid> GetAllResourceIds();
     71
     72    int GetNumberOfWaitingTasks();
     73
     74    Dictionary<Guid, int> GetCalculatingTasksByUser();
     75
     76    Dictionary<Guid, int> GetWaitingTasksByUser();
     77
     78    #endregion
    6779  }
    6880}
Note: See TracChangeset for help on using the changeset viewer.