Windows服务只执行一次

时间:2016-10-21 20:50:25

标签: c# .net windows-services topshelf

我使用TopShelf编写了我的第一个.Net服务,并且我遇到了服务代码只执行一次的问题。

我已按如下方式配置服务主体

    private static void Main(string[] args)
    {
        HostFactory.Run(x =>
        {
            x.Service<ServiceProcess>(s =>
            {
                s.ConstructUsing(name => new ServiceProcess());
                s.WhenStarted(tc => tc.Start());
                s.WhenStopped(tc => tc.Stop());
            });

            x.StartAutomatically();
            x.RunAs(Username, Password);
        });
    }

只运行一次的方法如下。

using System.Timers;

public class ServiceProcess
{
    private readonly Timer _timer;

    public ServiceProcess()
    {
        _timer = new Timer(1000) { AutoReset = false };
        _timer.Elapsed += (sender, eventArgs) => EventLog.WriteEntry(ServiceName, "It is " + DateTime.Now, EventLogEntryType.Information);
    }
}

我可以在事件日志中看到消息写得正确,但只发生一次。由于这是最基本的配置,我不确定为什么这不起作用。我已经玩了时间并试图添加异常处理,但最终似乎没有再次运行。

请注意,我的Start()Stop()方法分别正在执行_timer.Start()_timer.Stop()

1 个答案:

答案 0 :(得分:2)

将计时器的AutoReset属性设置为true。