Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/23/09 11:35:41 (15 years ago)
Author:
svonolfe
Message:

Avoid out of memory exceptions related to job objects (#372)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.DataAccess/3.2/IJobAdapter.cs

    r2066 r2082  
    8080    /// <returns></returns>
    8181    ICollection<Job> GetJobsByProject(Guid projectId);
     82
     83    /// <summary>
     84    /// Gets the computable job with the secified jobId
     85    /// </summary>
     86    /// <param name="jobId"></param>
     87    /// <returns></returns>
     88    ComputableJob GetComputableJob(Guid jobId);
     89
     90    /// <summary>
     91    /// Saves or update the computable job
     92    /// </summary>
     93    /// <param name="jobId"></param>
     94    void UpdateComputableJob(ComputableJob job);
    8295  }
    8396}
Note: See TracChangeset for help on using the changeset viewer.