Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/25/09 13:54:15 (15 years ago)
Author:
svonolfe
Message:

Further avoided out of memory exceptions by updating the JobResult DAO (#372)

File:
1 edited

Legend:

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

    r2086 r2099  
    3333    /// <param name="job"></param>
    3434    /// <returns></returns>
    35     ICollection<JobResult> GetResultsOf(Job job);
     35    ICollection<JobResult> GetResultsOf(Guid jobId);
    3636
    3737    /// <summary>
     
    4040    /// <param name="job"></param>
    4141    /// <returns></returns>
    42     JobResult GetLastResultOf(Job job);
     42    JobResult GetLastResultOf(Guid jobId);
     43
     44    /// <summary>
     45    /// Gets the computable job result with the secified jobResultId
     46    /// </summary>
     47    /// <param name="jobId"></param>
     48    /// <returns></returns>
     49    SerializedJobResult GetSerializedJobResult(Guid jobResultId);
     50
     51    /// <summary>
     52    /// Saves or update the computable job result
     53    /// </summary>
     54    /// <param name="jobId"></param>
     55    void UpdateSerializedJobResult(SerializedJobResult jobResult);
    4356  }
    4457}
Note: See TracChangeset for help on using the changeset viewer.