Last change
on this file since 3013 was
3011,
checked in by kgrading, 15 years ago
|
changed the complete DAL to LINQ 2 SQL (with the exception of the job streaming), did a lot of refactoring, Introduced DTOs (that are named DTOs for better understanding), added the spring.NET Interceptor, reintroduced transactions and cleaned up the whole JobResult thing and updated a part of the config merger (#830)
|
File size:
726 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Text;
|
---|
4 | using HeuristicLab.Hive.Contracts.BusinessObjects;
|
---|
5 | using System.IO;
|
---|
6 |
|
---|
7 | namespace HeuristicLab.Hive.Server.DataAccess {
|
---|
8 | public interface IJobDao: IGenericDao<JobDto> {
|
---|
9 | IEnumerable<JobDto> FindActiveJobsOfClient(ClientDto client);
|
---|
10 |
|
---|
11 | IEnumerable<JobDto> GetJobsByState(State state);
|
---|
12 |
|
---|
13 | void AssignClientToJob(Guid clientId, Guid jobId);
|
---|
14 |
|
---|
15 | void SetJobOffline(JobDto job);
|
---|
16 |
|
---|
17 | SerializedJob InsertWithAttachedJob(SerializedJob job);
|
---|
18 |
|
---|
19 | byte[] GetBinaryJobFile(Guid jobId);
|
---|
20 |
|
---|
21 | IEnumerable<JobDto> FindFittingJobsForClient(State state, int freeCores, int freeMemory);
|
---|
22 | Stream GetSerializedJobStream(Guid jobId);
|
---|
23 | }
|
---|
24 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.