Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/26/09 12:18:32 (15 years ago)
Author:
svonolfe
Message:

Streaming of Jobs and JobsResults directly from/to the DB (#680)

Location:
trunk/sources/HeuristicLab.Hive.Server.DataAccess/3.2
Files:
2 edited

Legend:

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

    r2099 r2117  
    2525using HeuristicLab.Hive.Contracts.BusinessObjects;
    2626using HeuristicLab.DataAccess.Interfaces;
     27using System.IO;
    2728
    2829namespace HeuristicLab.Hive.Server.DataAccess {
     
    8990
    9091    /// <summary>
     92    /// Gets a stream object for the large serialized job data
     93    /// </summary>
     94    /// <param name="jobId"></param>
     95    /// <returns></returns>
     96    Stream GetSerializedJobStream(Guid jobId, bool useExistingConnection);
     97
     98    /// <summary>
    9199    /// Saves or update the computable job
    92100    /// </summary>
  • trunk/sources/HeuristicLab.Hive.Server.DataAccess/3.2/IJobResultsAdapter.cs

    r2099 r2117  
    2525using HeuristicLab.Hive.Contracts.BusinessObjects;
    2626using HeuristicLab.DataAccess.Interfaces;
     27using System.IO;
    2728
    2829namespace HeuristicLab.Hive.Server.DataAccess {
     
    5051
    5152    /// <summary>
     53    /// Gets a stream object for the large serialized job result data
     54    /// </summary>
     55    /// <param name="jobId"></param>
     56    /// <returns></returns>
     57    Stream GetSerializedJobResultStream(Guid jobResultId, bool useExistingConnection);
     58
     59    /// <summary>
    5260    /// Saves or update the computable job result
    5361    /// </summary>
Note: See TracChangeset for help on using the changeset viewer.