Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/19/09 13:05:47 (15 years ago)
Author:
svonolfe
Message:

Implemented job assignment to resources (#507)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.DataAccess/3.2/IJobAdapter.cs

    r1944 r2066  
    4646    /// <param name="cores">all jobs which require less or equal cores</param>
    4747    /// <param name="memory">all jobs which require less or equal memory</param>
     48    /// <param name="resourceId">all jobs that can be calculated by that resource</param>
    4849    /// <returns></returns>
    49     ICollection<Job> FindJobs(State state, int cores, int memory);
     50    ICollection<Job> FindJobs(State state,
     51      int cores,
     52      int memory,
     53      Guid resourceId);
    5054
    5155    /// <summary>
Note: See TracChangeset for help on using the changeset viewer.