2

我正在尝试在 Windows 服务中使用计时器。该服务能够启动和停止,并且在发生这种情况时我会在事件日志中写入一些内容,这很有效。我的问题是,我还想使用一个持续运行的计时器,并在每次触发 timeElapsed 事件时向事件日志写入一些内容。

编辑:(我更改了代码,所以计时器是一个字段,但仍然不是我期望的结果,事件日志中没有日志条目)

using System.Timers;

初始化服务:

    public Timer timer;

    public MonitorService()
    {
        InitializeComponent();
        timer = new Timer(10000);
        //Some code that really doesn't matter
    }

开始事件

    protected override void OnStart(string[] args)
    {
        // Hook up the Elapsed event for the timer.
        timer.Elapsed += new ElapsedEventHandler(OnTimedEvent);
        timer.Enabled = true;

        timer.Start();

        EventLogger.WriteEntry("Biztalk monitoring service started", EventLogEntryType.SuccessAudit);

        // If the timer is declared in a long-running method, use
        // KeepAlive to prevent garbage collection from occurring
        // before the method ends.
        // GC.KeepAlive(timer);
    }


    private int count =0;

定时事件:(这是行不通的,没有每 10 秒写入事件日志的条目,而我希望它会这样做)

    // Specify what you want to happen when the Elapsed event is 
    // raised.
    private void OnTimedEvent(object source, ElapsedEventArgs e)
    {
        //Some other code that doesn't mather
        count++;
        EventLogger.WriteEntry(string.Format("TimerEvent has ran {0} times. Total time is: {1}", count, e.SignalTime), EventLogEntryType.Information);
    }

停止事件:

    protected override void OnStop()
    {
        EventLogger.WriteEntry("Biztalk monitoring service stopped", EventLogEntryType.Warning);
    }

主要的

对于那些想知道这是我在 Program.cs 中的主要方法的人:

     ///<summary>
     ///The main entry point for the application.
     ///</summary>
    static void Main()
    {
        var servicesToRun = new ServiceBase[] 
            { 
                new MonitorService() 
            };
        ServiceBase.Run(servicesToRun);
    }

已经问过了?确实是的!

我知道这个问题已经像这里一样早先被问过:Windows service with timer AND Best Timer for using in a Windows service

但这些解决方案似乎并不能解决我的问题。

欢迎任何建议!

4

2 回答 2

5

您的计时器对于 OnStart 方法是本地的。不应该。它应该是您的服务类的一个字段,因此您不需要使用提示来欺骗垃圾收集器。

编辑:您没有指定您using的 s. 通过使用确保Timer您使用的是System.Timers.Timer 不是System.Windows.Forms.Timer.

于 2013-05-15T09:56:14.770 回答
0

如果您想在设定的时间段后将某些内容记录到事件日志(除了您正在使用的计时器的经过事件中所做的事情),您可以在服务级别使用另一个计时器并注册其经过的事件。在那种情况下,您可以记录您想要的任何内容。

正如 nvoigt 所提到的,您也应该将此计时器移至服务级别。

于 2013-05-15T09:59:42.387 回答