Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/12/11 13:43:05 (14 years ago)
Author:
cneumuel
Message:

#1233

  • changed relationship between Job and HiveExperiment. There is no more HiveExperiment.RootJobId, instead there is Job.HiveExperimentId.
  • One HiveExperiment can now have multiple Experiments.
  • TreeView supports multiple root nodes
  • HiveEngine creates a HiveExperiment for each set of jobs, so jobs cannot be without an parent experiment anymore (no more loose jobs)
  • updated ExperimentManager binaries
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  
        44PrecompiledWeb
        55CreateEventLogSources
         6WindowsFormsTestProject
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/ServiceContracts/IHiveService.cs

    r6000 r6006  
    1717    Guid AddChildJob(Guid parentJobId, Job job, JobData jobData);
    1818
    19     [OperationContract] // formerly GetJobById
     19    [OperationContract]
    2020    Job GetJob(Guid jobId);
    2121
    22     [OperationContract] // formerly GetAllJobs
     22    [OperationContract]
    2323    IEnumerable<Job> GetJobs();
    2424
    25     [OperationContract] // formerly GetJobResults
     25    [OperationContract]
    2626    IEnumerable<LightweightJob> GetLightweightJobs(IEnumerable<Guid> jobIds);
    2727
    28     [OperationContract] // formerly GetChildJobResults
     28    [OperationContract]
    2929    IEnumerable<LightweightJob> GetLightweightChildJobs(Guid? parentJobId, bool recursive, bool includeParent);
    3030
    31     [OperationContract] // formerly GetLastSerializedResult
     31    [OperationContract]
     32    IEnumerable<LightweightJob> GetLightweightExperimentJobs(Guid experimentId);
     33
     34    [OperationContract]
    3235    JobData GetJobData(Guid jobId);
    3336
Note: See TracChangeset for help on using the changeset viewer.