调用ServiceBase.OnStart和OnStop ...同样的实例?

时间:2012-05-29 13:15:06

标签: c# windows-services

所以我有一个用c#编写的Windows服务。服务类派生自ServiceBase,并分别启动和停止服务调用实例方法OnStartOnStop。这是班上的SSCE:

partial class CometService : ServiceBase
{
    private Server<Bla> server;
    private ManualResetEvent mre;
    public CometService()
    {
        InitializeComponent();
    }       
    protected override void OnStart(string[] args)
    {
        //starting the server takes a while, but we need to complete quickly
        //here so let's spin off a thread so we can return pronto.
        new Thread(() =>
        {
            try
            {
                server = new Server<Bla>();
            }
            finally
            {
                mre.Set()
            }
        })
        {
            IsBackground = false
        }.Start();
    }

    protected override void OnStop()
    {
        //ensure start logic is completed before continuing
        mre.WaitOne();
        server.Stop();
    }
}

可以看出,有很多逻辑要求我们在调用OnStop时,我们处理的ServiceBase实例与我们调用OnStart时相同。

我能确定是这种情况吗?

2 个答案:

答案 0 :(得分:2)

如果你查看Program.cs课程,你会看到如下代码:

private static void Main()
{
    ServiceBase.Run(new ServiceBase[]
                {
                    new CometService()
                });
}

也就是说,实例是由您自己的项目中的代码创建的。这是所有Service Manager调用的一个实例(包括OnStartOnStop)。

答案 1 :(得分:1)

我猜是同一个实例。您可以快速测试在类中添加静态字段,以跟踪对OnStart中使用的对象的引用,并将其与OnStop的实例进行比较。

private static CometService instance = null;

protected override void OnStart(...)
{
    instance = this;
    ...
}

protected override void OnStop()
{
    object.ReferenceEquals(this, instance);
    ...
}