Changeset 971 for trunk/sources/HeuristicLab.Hive.Server.Core/InternalInterfaces/DataAccess/IJobAdapter.cs
- Timestamp:
- 12/11/08 16:50:12 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.Core/InternalInterfaces/DataAccess/IJobAdapter.cs
r963 r971 48 48 49 49 /// <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> 50 77 /// Deletes the job 51 78 /// </summary>
Note: See TracChangeset
for help on using the changeset viewer.