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/JobAdapter.cs

    r2099 r2117  
    3232using System.Data.SqlClient;
    3333using HeuristicLab.Hive.Server.ADODataAccess.TableAdapterWrapper;
     34using System.IO;
    3435
    3536namespace HeuristicLab.Hive.Server.ADODataAccess {
     
    436437          }
    437438        });
     439    }
     440
     441    public Stream GetSerializedJobStream(Guid jobId, bool useExistingConnection) {
     442      return
     443        ((JobAdapterWrapper)base.DataAdapterWrapper).
     444          GetSerializedJobStream(jobId, useExistingConnection);
    438445    }
    439446
Note: See TracChangeset for help on using the changeset viewer.