Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/14/09 16:45:00 (15 years ago)
Author:
svonolfe
Message:

removed locking from reading db methods (#372)

File:
1 edited

Legend:

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

    r1093 r1125  
    4646    protected abstract void UpdateRow(RowT row);
    4747
    48     [MethodImpl(MethodImplOptions.Synchronized)]
    4948    protected abstract IEnumerable<RowT> FindById(long id);
    5049
    51     [MethodImpl(MethodImplOptions.Synchronized)]
    5250    protected abstract IEnumerable<RowT> FindAll();
    5351    #endregion
     
    5553    protected delegate IEnumerable<RowT> Selector();
    5654
    57     [MethodImpl(MethodImplOptions.Synchronized)]
    5855    protected virtual RowT FindSingleRow(Selector selector) {
    5956      RowT row = default(RowT);
     
    8178    }
    8279
    83     [MethodImpl(MethodImplOptions.Synchronized)]
    8480    protected virtual ICollection<ObjT> FindMultiple(Selector selector) {
    8581      IEnumerable<RowT> found =
Note: See TracChangeset for help on using the changeset viewer.