Free cookie consent management tool by TermsFeed Policy Generator

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

Further improved handling of job objects (#372)

File:
1 edited

Legend:

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

    r1580 r2083  
    3939    }
    4040
     41    public byte[] GetSerializedJob(Guid jobId) {
     42      return TransactionalAdapter.GetSerializedJobById(jobId);
     43    }
     44
     45    public bool UpdateSerialiedJob(byte[] serializedJob, Guid jobId) {
     46      return TransactionalAdapter.UpdateSerializedJob(serializedJob, jobId) > 0;
     47    }
     48
    4149    protected override void SetConnection(DbConnection connection) {
    4250      adapter.Connection = connection as SqlConnection;
Note: See TracChangeset for help on using the changeset viewer.