Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/20/09 13:37:39 (15 years ago)
Author:
svonolfe
Message:

Created Heuristiclab DB Core (refactoring) #527

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.Core/LifecycleManager.cs

    r1133 r1377  
    2525using System.Text;
    2626using HeuristicLab.Hive.Contracts.Interfaces;
    27 using HeuristicLab.Hive.Server.Core.InternalInterfaces.DataAccess;
     27using HeuristicLab.Hive.Server.DataAccess;
    2828using System.Timers;
     29using HeuristicLab.DataAccess.Interfaces;
    2930
    3031namespace HeuristicLab.Hive.Server.Core {
     
    6465    }
    6566
    66     public ITransactionManager GetTransactionManager() {
    67       return ServiceLocator.GetTransactionManager();
     67    public IDBSynchronizer GetDBSynchronizer() {
     68      return ServiceLocator.GetDBSynchronizer();
    6869    }
    6970
    7071    public void Shutdown() {
    71       ServiceLocator.GetTransactionManager().UpdateDB();
     72      ServiceLocator.GetDBSynchronizer().UpdateDB();
    7273
    7374      if (OnShutdown != null)
Note: See TracChangeset for help on using the changeset viewer.