Changeset 6006 for branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/ServiceContracts
- Timestamp:
- 04/12/11 13:43:05 (14 years ago)
- Location:
- branches/HeuristicLab.Hive-3.4/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources
- Property svn:ignore
-
old new 4 4 PrecompiledWeb 5 5 CreateEventLogSources 6 WindowsFormsTestProject
-
- Property svn:ignore
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/ServiceContracts/IHiveService.cs
r6000 r6006 17 17 Guid AddChildJob(Guid parentJobId, Job job, JobData jobData); 18 18 19 [OperationContract] // formerly GetJobById19 [OperationContract] 20 20 Job GetJob(Guid jobId); 21 21 22 [OperationContract] // formerly GetAllJobs22 [OperationContract] 23 23 IEnumerable<Job> GetJobs(); 24 24 25 [OperationContract] // formerly GetJobResults25 [OperationContract] 26 26 IEnumerable<LightweightJob> GetLightweightJobs(IEnumerable<Guid> jobIds); 27 27 28 [OperationContract] // formerly GetChildJobResults28 [OperationContract] 29 29 IEnumerable<LightweightJob> GetLightweightChildJobs(Guid? parentJobId, bool recursive, bool includeParent); 30 30 31 [OperationContract] // formerly GetLastSerializedResult 31 [OperationContract] 32 IEnumerable<LightweightJob> GetLightweightExperimentJobs(Guid experimentId); 33 34 [OperationContract] 32 35 JobData GetJobData(Guid jobId); 33 36
Note: See TracChangeset
for help on using the changeset viewer.