Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/01/13 14:25:49 (11 years ago)
Author:
ascheibe
Message:

#2019 disable lazy loading in some methods to avoid deadlocks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Services.Hive.DataAccess/3.3/ITransactionManager.cs

    r7259 r9266  
    2424namespace HeuristicLab.Services.Hive.DataAccess {
    2525  public interface ITransactionManager {
    26     void UseTransaction(Action call, bool serializable = false, bool longRunning = false);
    27     T UseTransaction<T>(Func<T> call, bool serializable = false, bool longRunning = false);
     26    void UseTransaction(Action call, bool repeatableRead = false, bool longRunning = false);
     27    T UseTransaction<T>(Func<T> call, bool repeatableRead = false, bool longRunning = false);
    2828  }
    2929}
Note: See TracChangeset for help on using the changeset viewer.