Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive/3.4/Interfaces/ILifecycleManager.cs @ 5593

Last change on this file since 5593 was 5593, checked in by cneumuel, 13 years ago

#1233

  • changed the way lifecycle methods are called. The new service method TriggerLifecycle checks when the latest cleanup was made and performs one (if necessary). This can also be called by an external program (like a windows task)
  • robustified logging
File size: 248 bytes
Line 
1
2namespace HeuristicLab.Services.Hive {
3  /// <summary>
4  /// The only object in hive which holds a state. Must allow restarts without resetting all jobs
5  /// </summary>
6  public interface ILifecycleManager {
7    void Cleanup();
8  }
9}
Note: See TracBrowser for help on using the repository browser.