Changeset 9022 for trunk/sources/HeuristicLab.Services.Hive/3.3/Interfaces
- Timestamp:
- 12/11/12 15:07:54 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Services.Hive/3.3/Interfaces/IHiveDao.cs
r7916 r9022 31 31 DT.Task GetTask(Guid id); 32 32 IEnumerable<DT.Task> GetTasks(Expression<Func<Task, bool>> predicate); 33 IEnumerable<DT.LightweightTask> GetLightweightTasksForJob(Guid jobId); 34 IEnumerable<DT.LightweightTask> GetLightweightTasks(Expression<Func<Task, bool>> predicate); 33 35 Guid AddTask(DT.Task dto); 34 36 void UpdateTask(DT.Task dto); … … 145 147 146 148 #region Statistics Methods 149 Dictionary<Guid, int> GetWaitingTasksByUser(); 150 Dictionary<Guid, int> GetCalculatingTasksByUser(); 147 151 DT.Statistics GetStatistic(Guid id); 148 152 IEnumerable<DT.Statistics> GetStatistics(Expression<Func<Statistics, bool>> predicate);
Note: See TracChangeset
for help on using the changeset viewer.