Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/06/11 12:49:34 (12 years ago)
Author:
ascheibe
Message:

#1672

  • fixed name of slave windows service

reviewing comments:

  • reduced MaxParallelDownloads to 2 to not completely overload cpus
  • renamed ServiceLocator to HiveServiceLocator
File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.Hive/3.3/HiveServiceLocator.cs

    r7129 r7132  
    2424
    2525namespace HeuristicLab.Clients.Hive {
    26   public class ServiceLocator : IServiceLocator {
    27     private static IServiceLocator instance = null;
    28     public static IServiceLocator Instance {
     26  public class HiveServiceLocator : IHiveServiceLocator {
     27    private static IHiveServiceLocator instance = null;
     28    public static IHiveServiceLocator Instance {
    2929      get {
    3030        if (instance == null) {
    31           instance = new ServiceLocator();
     31          instance = new HiveServiceLocator();
    3232        }
    3333        return instance;
Note: See TracChangeset for help on using the changeset viewer.