- Timestamp:
- 12/13/10 16:09:22 (14 years ago)
- Location:
- branches/HeuristicLab.Hive-3.4/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources
- Property svn:ignore
-
old new 1 1 HeuristicLab.Hive-3.4.suo 2 2 TestResults 3 HeuristicLab.Hive 3.4.suo
-
- Property svn:ignore
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive/3.4/Standalone/HeuristicLabServicesHiveApplication.cs
r5040 r5095 12 12 public class HeuristicLabServicesHiveApplication : ApplicationBase { 13 13 private IDictionary<string, ServiceHost> serviceHosts = new Dictionary<string, ServiceHost>(); 14 private Hive hive { get { return ServiceLocator.Instance.Hive; } }14 private ILifecycleManager lifecycleManager { get { return ServiceLocator.Instance.LifecycleManager; } } 15 15 16 16 public override void Run() { … … 25 25 host.Close(); 26 26 } 27 hive.Shutdown();27 lifecycleManager.Stop(); 28 28 } 29 29 }
Note: See TracChangeset
for help on using the changeset viewer.