1

我们有一个 NServiceBus Windows 服务,它在启动时需要一段时间来注册模块。我们想向服务经理请求额外的时间来正确启动。对于不使用 NServiceBus 的服务,这将使用ServiceBase.RequestAdditionalTime. 这将如何使用 NServiceBus.Host 完成?

4

2 回答 2

1

我们最终删除了 NServiceBus.Host 并改用 Topshelf。注意服务启动时需要的额外配置。

public static void Main(string[] args)
{
    HostFactory.Run(hf =>
    {
        hf.Service<MailboxListenerService>(svc =>
        {
            svc.ConstructUsing(mls => new MailboxListenerService());
            svc.WhenStarted((mls, control) => mls.Start(control));
            svc.WhenStopped(mls => mls.Stop());
        });
    });
}

public class MailboxListenerService
{
    private RunWebApi _webApiRunner;

    public MailboxListenerService()
    {
    }

    public bool Start(HostControl hostControl)
    {
        hostControl.RequestAdditionalTime(TimeSpan.FromSeconds(60));

        var kernel = new StandardKernel(new MailboxListenerModule());

        Configure.With()
            .DefineEndpointName("my.endpoint.name")
            .DefiningEventsAs(t => typeof(Messaging.Markers.IEvent).IsAssignableFrom(t))
            .Log4Net<NlogAppenderForLog4Net>(a => { })
            .NinjectBuilder(kernel)
            .MsmqTransport()
                .MsmqSubscriptionStorage("my.subscription.storage")
            .DisableTimeoutManager()
            .DisableSecondLevelRetries()
            .UnicastBus()
            .ImpersonateSender(false);

        _webApiRunner = kernel.Get<RunWebApi>();
        _webApiRunner.Run();

        return true;
    }

    public void Stop()
    {
        _webApiRunner.Stop();
    }
}
于 2013-03-11T21:47:50.763 回答
0

不幸的是,没有,我们已经打开了一个问题以在未来的版本中支持这一点

https://github.com/NServiceBus/NServiceBus/issues/1046

解决方法是使用注册表增加您服务的超时时间:

http://support.microsoft.com/kb/824344

于 2013-03-11T18:37:48.557 回答