使用TopShelf做windows服务

Posted 只想一个人飞

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用TopShelf做windows服务相关的知识,希望对你有一定的参考价值。

  class Program
    {
        static void Main(string[] args)
        {
            HostFactory.Run(x =>                                 //1
            {
                x.RunAsLocalSystem();                            //6
                x.StartAutomatically();
                x.SetDescription("服务测试");        //7
                x.SetDisplayName("服务测试1");                       //8
                x.SetServiceName("服务测试名称");                       //9

                x.Service<TownCrier>(s =>                        //2
                {
                    s.ConstructUsing(name => new TownCrier());     //3
                    s.WhenStarted(tc => tc.Start());              //4
                    s.WhenStopped(tc => tc.Stop());               //5
                });
            });
        }
    }

    public class TownCrier
    {
        readonly Timer _timer;
        public TownCrier()
        {
            _timer = new Timer(1000) { AutoReset = true };
            _timer.Elapsed += (sender, eventArgs) => Console.WriteLine("It is {0} and all is well", DateTime.Now);
        }
        public void Start() { _timer.Start(); }
        public void Stop() { _timer.Stop(); }
    }

 

以上是关于使用TopShelf做windows服务的主要内容,如果未能解决你的问题,请参考以下文章

使用Topshelf创建Windows 服务

使用Topshelf创建Windows服务

使用Topshelf创建Windows服务

topshelf包装redis为windows服务

使用Topshelf创建Windows服务

如何使用Topshelf管理Windows服务