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)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/3.2/JobResultsAdapter.cs

    r2099 r2117  
    1010using System.Data.SqlClient;
    1111using HeuristicLab.Hive.Server.ADODataAccess.TableAdapterWrapper;
     12using System.IO;
    1213
    1314namespace HeuristicLab.Hive.Server.ADODataAccess {
     
    152153    }
    153154
     155    public Stream GetSerializedJobResultStream(Guid jobResultId, bool useExistingConnection) {
     156      return
     157        ((JobResultsAdapterWrapper)
     158        base.DataAdapterWrapper).
     159          GetSerializedJobResultStream(jobResultId, useExistingConnection);
     160    }
     161
    154162    public void UpdateSerializedJobResult(SerializedJobResult jobResult) {
    155163      if (jobResult != null &&
Note: See TracChangeset for help on using the changeset viewer.