Rev | Line | |
---|
[792] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using System.ServiceModel;
|
---|
| 6 | using HeuristicLab.Hive.Contracts.BusinessObjects;
|
---|
| 7 |
|
---|
| 8 | namespace HeuristicLab.Hive.Contracts.Interfaces {
|
---|
| 9 | /// <summary>
|
---|
| 10 | /// This is the facade for the Job Manager used by the Management Console
|
---|
| 11 | /// </summary>
|
---|
| 12 | [ServiceContract]
|
---|
[796] | 13 | public interface IJobManager {
|
---|
[792] | 14 | [OperationContract]
|
---|
[902] | 15 | ResponseList<Job> GetAllJobs();
|
---|
[792] | 16 | }
|
---|
| 17 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.