Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/24/13 14:45:51 (11 years ago)
Author:
pfleck
Message:

#2063
Added StatisticsGenerator for generating statistic data for Hive.
ServiceLocator returns the StatisticsGenerator.
Integrated StatisticsGenerator in Janitor service for periodic calls.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive/3.3/ServiceLocator.cs

    r9434 r9526  
    7474    }
    7575
     76    private IStatisticsGenerator statisticsGenerator;
     77    public IStatisticsGenerator StatisticsGenerator {
     78      get { return statisticsGenerator ?? (statisticsGenerator = new HiveStatisticsGenerator()); }
     79    }
     80
    7681    private ITransactionManager transactionManager;
    7782    public ITransactionManager TransactionManager {
Note: See TracChangeset for help on using the changeset viewer.