Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.DataAccess/3.2/IJobAdapter.cs @ 1530

Last change on this file since 1530 was 1530, checked in by gkronber, 15 years ago

Moved source files of plugins Hive ... Visualization.Test into version-specific sub-folders. #576

File size: 2.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Collections.Generic;
24using System.Text;
25using HeuristicLab.Hive.Contracts.BusinessObjects;
26using HeuristicLab.DataAccess.Interfaces;
27
28namespace HeuristicLab.Hive.Server.DataAccess {
29  public interface IJobAdapter: IDataAdapter<Job> {
30    /// <summary>
31    /// Gets all subjobs of the specified job
32    /// </summary>
33    /// <returns></returns>
34    ICollection<Job> GetAllSubjobs(Job job);
35
36    /// <summary>
37    /// Gets all Jobs with the specified state
38    /// </summary>
39    /// <returns></returns>
40    ICollection<Job> GetJobsByState(State state);
41
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>
52    /// Gets all jobs of the client
53    /// </summary>
54    /// <param name="client"></param>
55    /// <returns></returns>
56    ICollection<Job> GetJobsOf(ClientInfo client);
57
58    /// <summary>
59    /// Gets all active jobs of the client
60    /// </summary>
61    /// <param name="client"></param>
62    /// <returns></returns>
63    ICollection<Job> GetActiveJobsOf(ClientInfo client);
64
65    /// <summary>
66    /// Gets all jobs of the user
67    /// </summary>
68    /// <param name="user"></param>
69    /// <returns></returns>
70    ICollection<Job> GetJobsOf(Guid userId);
71  }
72}
Note: See TracBrowser for help on using the repository browser.