Free cookie consent management tool by TermsFeed Policy Generator

Changeset 1497


Ignore:
Timestamp:
04/03/09 12:11:44 (15 years ago)
Author:
svonolfe
Message:

Added findJob method to the jobAdapter interface (#372)

Location:
trunk/sources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/JobAdapter.cs

    r1468 r1497  
    294294      return false;
    295295    }
     296
     297    public ICollection<Job> FindJobs(State state, int cores, int memory) {
     298      throw new NotImplementedException();
     299    }
    296300    #endregion
    297301  }
  • trunk/sources/HeuristicLab.Hive.Server.DataAccess/IJobAdapter.cs

    r1377 r1497  
    4141
    4242    /// <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>
    4352    /// Gets all jobs of the client
    4453    /// </summary>
Note: See TracChangeset for help on using the changeset viewer.