Changeset 3578 for trunk/sources/HeuristicLab.Hive.Contracts
- Timestamp:
- 05/01/10 13:58:24 (15 years ago)
- 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 24 24 using System.Linq; 25 25 using System.Text; 26 using System.Data; 26 27 27 28 namespace HeuristicLab.Hive.Contracts { 28 29 public class ApplicationConstants { 29 30 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; 30 35 public static int HEARTBEAT_MAX_DIF = 120; // value in seconds 31 36 public static int JOB_TIME_TO_LIVE = 5; -
trunk/sources/HeuristicLab.Hive.Contracts/3.2/BusinessObjects/JobDto.cs
r3018 r3578 48 48 public DateTime? DateCalculated { get; set; } 49 49 [DataMember] 50 public DateTime? DateFinished { get; set; } 51 [DataMember] 50 52 public int Priority { get; set; } 51 53 [DataMember] -
trunk/sources/HeuristicLab.Hive.Contracts/3.2/HeuristicLab.Hive.Contracts-3.2.csproj
r3203 r3578 76 76 <RequiredTargetFramework>3.0</RequiredTargetFramework> 77 77 </Reference> 78 <Reference Include="System.Transactions" /> 78 79 <Reference Include="System.Xml.Linq"> 79 80 <RequiredTargetFramework>3.5</RequiredTargetFramework> -
trunk/sources/HeuristicLab.Hive.Contracts/3.2/Interfaces/IJobManager.cs
r3220 r3578 34 34 public interface IJobManager { 35 35 [OperationContract] 36 ResponseList<JobDto> GetAllJobsWithFilter(State jobState, int offset, int count); 37 [OperationContract] 36 38 ResponseList<JobDto> GetAllJobs(); 37 39 [OperationContract] 38 40 ResponseObject<JobDto> GetJobById(Guid jobId); 41 [OperationContract] 42 ResponseObject<JobDto> GetJobByIdWithDetails(Guid jobId); 39 43 [OperationContract] 40 44 ResponseObject<JobDto> AddNewJob(SerializedJob job); … … 62 66 ResponseList<JobDto> GetJobsByProject(Guid projectId); 63 67 [OperationContract] 64 ResponseObject<JobDto> AddJobWithGroupStrings(SerializedJob job, IEnumerable<string> resources); 68 ResponseObject<JobDto> AddJobWithGroupStrings(SerializedJob job, IEnumerable<string> resources); 65 69 } 66 70 }
Note: See TracChangeset
for help on using the changeset viewer.