How to pass HostControl instance to custom host service in TopShelf?
Asked Answered
T

1

5

This question has been asked elsewhere on SO, but there is no indication of how I get an instance of a HostControl as the post suggests. My TopShelf main program looks like this:

    public static void Main()
    {
        HostFactory.Run(CreateHost);
    }

    private static void CreateHost(HostConfigurator x)
    {
        x.UseLog4Net();

        x.Service<EventBroker>(s =>
        {
            s.ConstructUsing(name => new EventBroker());
            s.WhenStarted(tc => tc.Start());
            s.WhenStopped(tc => tc.Stop());
        });

        x.StartAutomatically();

        x.RunAsNetworkService();
    }

Any suggestions?

Taillight answered 25/6, 2015 at 23:37 Comment(0)
M
10

Change WhenStarted to have HostControl passed to it like this

   s.WhenStarted((tc, hostControl) => tc.Start(hostControl));

Per TopShelf documentation here http://topshelf.readthedocs.org/en/latest/configuration/config_api.html

Mitsukomitt answered 25/6, 2015 at 23:46 Comment(2)
hostControl: CS0029 Cannot implicitly convert type 'void' to 'bool'Soyuz
I know it's been 3 years but I am stuck with the same problem. Any fixes?Balata

© 2022 - 2024 — McMap. All rights reserved.