Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.DataAccess/3.2/IJobDao.cs @ 3578

Last change on this file since 3578 was 3578, checked in by kgrading, 14 years ago

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

File size: 830 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using HeuristicLab.Hive.Contracts.BusinessObjects;
5using System.IO;
6
7namespace 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, Guid clientGuid);
22    Stream GetSerializedJobStream(Guid jobId);
23
24    IEnumerable<JobDto> FindWithLimitations(State jobState, int offset, int count);
25  }
26}
Note: See TracBrowser for help on using the repository browser.