Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/28/09 16:15:10 (15 years ago)
Author:
svonolfe
Message:

Avoided possible race conditions when streaming data from/into the DB (#680)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.DataAccess/3.2/Interfaces/ISession.cs

    r2117 r2123  
    2525
    2626namespace HeuristicLab.DataAccess.Interfaces {
     27  public enum TransactionIsolationLevel {
     28    Default, ReadUncommitted, ReadCommitted, RepeatableRead, Serializable
     29  };
     30
    2731  public interface ISession {
    2832    ISessionFactory Factory { get; }
    29    
     33
     34    ITransaction BeginTransaction(TransactionIsolationLevel isolationLevel);
     35
    3036    ITransaction BeginTransaction();
    3137
Note: See TracChangeset for help on using the changeset viewer.