Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/25/10 19:57:44 (14 years ago)
Author:
kgrading
Message:

improved the DAL further, changed minor details for the presentation (#830)

Location:
trunk/sources/HeuristicLab.Hive.Contracts/3.2/Interfaces
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Contracts/3.2/Interfaces/IExecutionEngineFacade.cs

    r3011 r3220  
    3333    ResponseObject<JobDto> AddJob(SerializedJob job);
    3434    [OperationContract]
     35    ResponseObject<JobDto> AddJobWithGroupStrings(SerializedJob jobObj, IEnumerable<string> groups);
     36    [OperationContract]
    3537    Response RequestSnapshot(Guid jobId);
    3638    [OperationContract]
    3739    ResponseObject<SerializedJob> GetLastSerializedResult(Guid jobId, bool requested);
    3840    [OperationContract]
    39     Response AbortJob(Guid jobId);
     41    Response AbortJob(Guid jobId);   
    4042  }
    4143}
  • trunk/sources/HeuristicLab.Hive.Contracts/3.2/Interfaces/IJobManager.cs

    r3011 r3220  
    6161    [OperationContract]
    6262    ResponseList<JobDto> GetJobsByProject(Guid projectId);
     63    [OperationContract]
     64    ResponseObject<JobDto> AddJobWithGroupStrings(SerializedJob job, IEnumerable<string> resources);
    6365  }
    6466}
Note: See TracChangeset for help on using the changeset viewer.