Changeset 1088 for trunk/sources/HeuristicLab.Hive.Contracts
- Timestamp:
- 01/07/09 17:04:39 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Contracts/Interfaces/ILifecycleManager.cs
r948 r1088 25 25 using System.Text; 26 26 27 namespace HeuristicLab.Hive.Contracts.Interfaces { 27 namespace HeuristicLab.Hive.Contracts.Interfaces { 28 28 /// <summary> 29 29 /// Manages the lifecycle of the application 30 30 /// </summary> 31 public interface ILifecycleManager { 31 public interface ILifecycleManager { 32 32 /// <summary> 33 33 /// Initializes the application 34 34 /// </summary> 35 35 void Init(); 36 37 /// <summary> 38 /// The server heartbeat 39 /// </summary> 40 event EventHandler OnServerHeartbeat; 36 41 37 42 /// <summary>
Note: See TracChangeset
for help on using the changeset viewer.