Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/01/10 13:58:24 (14 years ago)
Author:
kgrading
Message:

Removed References to HiveLogging and updated the default logging mechanism (#991)

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

Legend:

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

    r3203 r3578  
    2424using System.Linq;
    2525using System.Text;
     26using System.Data;
    2627
    2728namespace HeuristicLab.Hive.Contracts {
    2829  public class ApplicationConstants {
    2930
     31    public static System.Data.IsolationLevel ISOLATION_LEVEL = IsolationLevel.ReadCommitted;
     32
     33    public static System.Transactions.IsolationLevel ISOLATION_LEVEL_SCOPE =
     34      System.Transactions.IsolationLevel.ReadCommitted;
    3035    public static int HEARTBEAT_MAX_DIF = 120; // value in seconds
    3136    public static int JOB_TIME_TO_LIVE = 5;
  • trunk/sources/HeuristicLab.Hive.Contracts/3.2/BusinessObjects/JobDto.cs

    r3018 r3578  
    4848    public DateTime? DateCalculated { get; set; }
    4949    [DataMember]
     50    public DateTime? DateFinished { get; set; }
     51    [DataMember]
    5052    public int Priority { get; set; }
    5153    [DataMember]
  • trunk/sources/HeuristicLab.Hive.Contracts/3.2/HeuristicLab.Hive.Contracts-3.2.csproj

    r3203 r3578  
    7676      <RequiredTargetFramework>3.0</RequiredTargetFramework>
    7777    </Reference>
     78    <Reference Include="System.Transactions" />
    7879    <Reference Include="System.Xml.Linq">
    7980      <RequiredTargetFramework>3.5</RequiredTargetFramework>
  • trunk/sources/HeuristicLab.Hive.Contracts/3.2/Interfaces/IJobManager.cs

    r3220 r3578  
    3434  public interface IJobManager {
    3535    [OperationContract]
     36    ResponseList<JobDto> GetAllJobsWithFilter(State jobState, int offset, int count);
     37    [OperationContract]
    3638    ResponseList<JobDto> GetAllJobs();
    3739    [OperationContract]
    3840    ResponseObject<JobDto> GetJobById(Guid jobId);
     41    [OperationContract]
     42    ResponseObject<JobDto> GetJobByIdWithDetails(Guid jobId);
    3943    [OperationContract]
    4044    ResponseObject<JobDto> AddNewJob(SerializedJob job);
     
    6266    ResponseList<JobDto> GetJobsByProject(Guid projectId);
    6367    [OperationContract]
    64     ResponseObject<JobDto> AddJobWithGroupStrings(SerializedJob job, IEnumerable<string> resources);
     68    ResponseObject<JobDto> AddJobWithGroupStrings(SerializedJob job, IEnumerable<string> resources);   
    6569  }
    6670}
Note: See TracChangeset for help on using the changeset viewer.