Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.Slave.Console/3.3/ILogReader.cs @ 5179

Last change on this file since 5179 was 4772, checked in by cneumuel, 14 years ago

#1260

  • added LogServiceReader to display log for slave without writing to local files
  • aborted jobs with childjobs now got back to state WaitForChildJob (instead of Offline)
  • lifecyclemanager now knows about available plugins (does not yet work perfectly)
File size: 245 bytes
Line 
1using System;
2namespace HeuristicLab.Hive.Slave.Console {
3  public delegate void MoreDataHandler(object sender, string newData);
4
5  interface ILogReader {
6    event MoreDataHandler MoreData;
7    void Start();
8    void Stop();
9  }
10}
Note: See TracBrowser for help on using the repository browser.