Last change
on this file since 8798 was
8545,
checked in by fschoepp, 12 years ago
|
#1888:
- Controller is now capable of gathering Hive Jobs
- Hive Jobs will be mapped to independent Job-Class (shared between Controller and Frontend)
- HiveScenarioManager is capable of gathering Hive Jobs + their results
- Job Results will be mapped to string properties
- Frontend renders all Results after opening the job details
- Misc: Frontend now passes User-object to Controller so that it is able to connect to the Hive Service (hardcoded values removed)
|
File size:
533 bytes
|
Rev | Line | |
---|
[8506] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using HeuristicLab.Services.Optimization.ControllerService.Model;
|
---|
| 6 |
|
---|
| 7 | namespace HeuristicLab.Services.Optimization.ControllerService.Interfaces {
|
---|
| 8 | public interface IScenarioManager {
|
---|
[8545] | 9 | void DispatchScenario(User user, OptimizationScenario scenario);
|
---|
| 10 | IList<Job> GetJobs(User user);
|
---|
| 11 | Job GetJob(User user, string id);
|
---|
| 12 | void DeleteJob(User user, string id);
|
---|
| 13 | IList<Model.Run> GetJobResults(User user, string id);
|
---|
[8506] | 14 | }
|
---|
| 15 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.