Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/11/08 16:50:12 (15 years ago)
Author:
svonolfe
Message:

Added Job Adapter (#372)

File:
1 edited

Legend:

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

    r963 r971  
    4848
    4949    /// <summary>
     50    /// Gets all subjobs of the specified job
     51    /// </summary>
     52    /// <returns></returns>
     53    ICollection<Job> GetAllSubjobs(Job job);
     54
     55    /// <summary>
     56    /// Gets the result of a job
     57    /// </summary>
     58    /// <param name="job"></param>
     59    /// <returns></returns>
     60    JobResult GetResult(Job job);
     61
     62    /// <summary>
     63    /// Gets all jobs of the client
     64    /// </summary>
     65    /// <param name="client"></param>
     66    /// <returns></returns>
     67    ICollection<Job> GetJobsOf(ClientInfo client);
     68
     69    /// <summary>
     70    /// Gets all jobs of the user
     71    /// </summary>
     72    /// <param name="user"></param>
     73    /// <returns></returns>
     74    ICollection<Job> GetJobsOf(User user);
     75
     76    /// <summary>
    5077    /// Deletes the job
    5178    /// </summary>
Note: See TracChangeset for help on using the changeset viewer.