Last change
on this file since 5095 was
5095,
checked in by cneumuel, 14 years ago
|
#1233
- fixed config merge process
- worked on hive server test setup
|
File size:
522 bytes
|
Rev | Line | |
---|
[5095] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using HeuristicLab.Services.Hive.Common;
|
---|
| 6 | using HeuristicLab.Services.Hive.Common.DataTransfer;
|
---|
| 7 |
|
---|
| 8 | namespace HeuristicLab.Services.Hive {
|
---|
| 9 | /// <summary>
|
---|
| 10 | /// The only object in hive which holds a state. Must allow restarts without resetting all jobs
|
---|
| 11 | /// </summary>
|
---|
| 12 | public interface ILifecycleManager {
|
---|
| 13 | void Start();
|
---|
| 14 |
|
---|
| 15 | void Stop();
|
---|
| 16 |
|
---|
| 17 | List<MessageContainer> ProcessHeartbeat(Heartbeat heartbeat);
|
---|
| 18 | }
|
---|
| 19 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.