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 | |
---|
1 | using System;
|
---|
2 | namespace 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.