Changeset 6717 for branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive/3.3/ServiceContracts
- Timestamp:
- 09/08/11 10:38:36 (13 years ago)
- Location:
- branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive/3.3/ServiceContracts
- Files:
-
- 1 added
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive/3.3/ServiceContracts/IHiveService.cs
r6703 r6717 24 24 using System.Net.Security; 25 25 using System.ServiceModel; 26 using HeuristicLab.Services.Hive. Common.DataTransfer;27 28 namespace HeuristicLab.Services.Hive. Common.ServiceContracts {26 using HeuristicLab.Services.Hive.DataTransfer; 27 28 namespace HeuristicLab.Services.Hive.ServiceContracts { 29 29 30 30 [ServiceContract(ProtectionLevel = ProtectionLevel.EncryptAndSign)] … … 38 38 Guid AddChildJob(Guid parentJobId, Job job, JobData jobData); 39 39 40 [OperationContract] 40 [OperationContract] 41 41 Job GetJob(Guid jobId); 42 42 43 [OperationContract] 43 [OperationContract] 44 44 IEnumerable<Job> GetJobs(); 45 45 46 [OperationContract] 46 [OperationContract] 47 47 IEnumerable<LightweightJob> GetLightweightJobs(IEnumerable<Guid> jobIds); 48 48 49 [OperationContract] 49 [OperationContract] 50 50 IEnumerable<LightweightJob> GetLightweightChildJobs(Guid? parentJobId, bool recursive, bool includeParent); 51 51 52 [OperationContract] 52 [OperationContract] 53 53 IEnumerable<LightweightJob> GetLightweightExperimentJobs(Guid experimentId); 54 54
Note: See TracChangeset
for help on using the changeset viewer.