Changeset 1497
- Timestamp:
- 04/03/09 12:11:44 (16 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/JobAdapter.cs
r1468 r1497 294 294 return false; 295 295 } 296 297 public ICollection<Job> FindJobs(State state, int cores, int memory) { 298 throw new NotImplementedException(); 299 } 296 300 #endregion 297 301 } -
trunk/sources/HeuristicLab.Hive.Server.DataAccess/IJobAdapter.cs
r1377 r1497 41 41 42 42 /// <summary> 43 /// Finds a job with the specified criterias 44 /// </summary> 45 /// <param name="state">all jobs with the specified state</param> 46 /// <param name="cores">all jobs which require less or equal cores</param> 47 /// <param name="memory">all jobs which require less or equal memory</param> 48 /// <returns></returns> 49 ICollection<Job> FindJobs(State state, int cores, int memory); 50 51 /// <summary> 43 52 /// Gets all jobs of the client 44 53 /// </summary>
Note: See TracChangeset
for help on using the changeset viewer.