Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/LifecycleManager.cs @ 4171

Last change on this file since 4171 was 4107, checked in by cneumuel, 15 years ago

migration from 3.2 to 3.3 completed. Hive Server and Client are now executable and as functional as they were in 3.2. (#1096)

File size: 2.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Collections.Generic;
24using System.Linq;
25using System.Text;
26using HeuristicLab.Hive.Contracts.Interfaces;
27using HeuristicLab.Hive.Server.DataAccess;
28using System.Timers;
29using HeuristicLab.DataAccess.Interfaces;
30
31namespace HeuristicLab.Hive.Server.Core {
32  class LifecycleManager: ILifecycleManager {
33    private static Timer timer =
34      new Timer();
35
36    private static event EventHandler OnServerHeartbeat;
37    private static event EventHandler OnStartup;
38    private static event EventHandler OnShutdown;
39
40    #region ILifecycleManager Members
41
42    public void RegisterHeartbeat(EventHandler handler) {
43      OnServerHeartbeat += handler;
44    }
45
46    public void RegisterStartup(EventHandler handler) {
47      OnStartup += handler;
48    }
49
50    public void RegisterShutdown(EventHandler handler) {
51      OnShutdown += handler;
52    }
53
54    public void Init() {
55      using (ServiceLocator.GetContextFactory().GetContext()) {
56        timer.Interval = new TimeSpan(0, 0, 10).TotalMilliseconds; // TODO: global constant needed
57        timer.Elapsed += new ElapsedEventHandler(timer_Elapsed);
58        timer.Start();
59
60        if (OnStartup != null)
61          OnStartup(this, null);
62      }
63    }
64
65    void timer_Elapsed(object sender, ElapsedEventArgs e) {
66      using (ServiceLocator.GetContextFactory().GetContext()) {
67        if (OnServerHeartbeat != null)
68          OnServerHeartbeat(this, null);
69      }
70    }
71
72    public void Shutdown() {
73      using (ServiceLocator.GetContextFactory().GetContext()) {
74        if (OnShutdown != null)
75          OnShutdown(this, null);
76      }
77    }
78
79    #endregion
80  }
81}
Note: See TracBrowser for help on using the repository browser.