Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive/3.4/Interfaces/IServiceLocator.cs @ 5511

Last change on this file since 5511 was 5405, checked in by cneumuel, 14 years ago

#1233

  • moved heartbeat timestamps of slaves and jobs into database to make server stateless
  • made slave use the right authentication ("hiveslave" instead of HL username/password)
  • moved heartbeat related methods into HeartbeatManager
  • changed signature of Service.Hello method, so all hardware related information is transferred in that method withing the Slave-object
File size: 466 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Services.Hive.DataAccess;
6
7namespace HeuristicLab.Services.Hive {
8  public interface IServiceLocator {
9
10    IAuthorizationManager AuthorizationManager { get; }
11    IHiveDao HiveDao { get; }
12    ILifecycleManager LifecycleManager { get; }
13    TransactionManager TransactionManager { get; }
14    HeartbeatManager HeartbeatManager { get; }
15  }
16}
Note: See TracBrowser for help on using the repository browser.