Changeset 1133 for trunk/sources/HeuristicLab.Hive.Contracts/Interfaces
- Timestamp:
- 01/15/09 14:53:13 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Hive.Contracts/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Contracts/Interfaces/IClientCommunicator.cs
r1103 r1133 43 43 long jobId, 44 44 byte[] result, 45 double percentage, 45 46 Exception exception, 46 47 bool finished); -
trunk/sources/HeuristicLab.Hive.Contracts/Interfaces/ILifecycleManager.cs
r1088 r1133 38 38 /// The server heartbeat 39 39 /// </summary> 40 event EventHandler OnServerHeartbeat; 40 void RegisterHeartbeat(EventHandler handler); 41 42 /// <summary> 43 /// The startup event 44 /// </summary> 45 void RegisterStartup(EventHandler handler); 46 47 /// <summary> 48 /// The shutdown event 49 /// </summary> 50 void RegisterShutdown(EventHandler handler); 41 51 42 52 /// <summary>
Note: See TracChangeset
for help on using the changeset viewer.