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 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.Linq;
|
---|
25 | using System.Text;
|
---|
26 | using System.ServiceModel;
|
---|
27 | using HeuristicLab.Hive.Contracts.BusinessObjects;
|
---|
28 | using HeuristicLab.Hive.Contracts.ResponseObjects;
|
---|
29 |
|
---|
30 | namespace HeuristicLab.Hive.Contracts.Interfaces {
|
---|
31 | /// <summary>
|
---|
32 | /// This is the facade for the Job Manager used by the Management Console
|
---|
33 | /// </summary>
|
---|
34 | [ServiceContract]
|
---|
35 | public interface IJobManager {
|
---|
36 |
|
---|
37 | [OperationContract]
|
---|
38 | ResponseList<JobDto> GetAllJobsWithFilter(State jobState, int offset, int count);
|
---|
39 |
|
---|
40 | [OperationContract]
|
---|
41 | ResponseList<JobDto> GetAllJobs();
|
---|
42 |
|
---|
43 | [OperationContract]
|
---|
44 | ResponseObject<JobDto> GetJobById(Guid jobId);
|
---|
45 |
|
---|
46 | [OperationContract]
|
---|
47 | ResponseObject<JobDto> GetJobByIdWithDetails(Guid jobId);
|
---|
48 |
|
---|
49 | [OperationContract]
|
---|
50 | ResponseObject<JobDto> AddNewJob(SerializedJob job);
|
---|
51 |
|
---|
52 | //[OperationContract]
|
---|
53 | //Response RemoveJob(Guid jobId);
|
---|
54 |
|
---|
55 | //[OperationContract]
|
---|
56 | //ResponseObject<JobDto> GetLastJobResultOf(Guid jobId);
|
---|
57 |
|
---|
58 | [OperationContract]
|
---|
59 | ResponseObject<SerializedJob> GetLastSerializedResult(Guid jobId, bool requested, bool snapshot);
|
---|
60 |
|
---|
61 | [OperationContract]
|
---|
62 | ResponseObject<JobResultList> GetJobResults(IEnumerable<Guid> jobIds);
|
---|
63 |
|
---|
64 | [OperationContract]
|
---|
65 | Response RequestSnapshot(Guid jobId);
|
---|
66 |
|
---|
67 | [OperationContract]
|
---|
68 | Response AbortJob(Guid jobId);
|
---|
69 |
|
---|
70 | [OperationContract]
|
---|
71 | ResponseList<ProjectDto> GetAllProjects();
|
---|
72 |
|
---|
73 | [OperationContract]
|
---|
74 | Response CreateProject(ProjectDto project);
|
---|
75 |
|
---|
76 | [OperationContract]
|
---|
77 | Response ChangeProject(ProjectDto project);
|
---|
78 |
|
---|
79 | [OperationContract]
|
---|
80 | Response DeleteProject(Guid projectId);
|
---|
81 |
|
---|
82 | [OperationContract]
|
---|
83 | ResponseList<JobDto> GetJobsByProject(Guid projectId);
|
---|
84 |
|
---|
85 | [OperationContract]
|
---|
86 | ResponseObject<JobDto> AddJobWithGroupStrings(SerializedJob job, IEnumerable<string> resources);
|
---|
87 | }
|
---|
88 | }
|
---|