How do I Instantiate component as Singleton at registration?

喜欢而已 提交于 2019-12-01 04:52:29
Moshe Levi

You can just use the built it Startable facility like so:

container.AddFacility<StartableFacility>();
container.Register(Component.For<MySpecialClass>().LifeStyle.Singleton.Start());

You can read about it here

For this simple case you could just register an existing instance:

var special = new MySpecialClass();
container.Register(Component.For<MySpecialClass>().Instance(special));

The answer re using "Instance" may not always be feasible (if the class has layers of dependencies itself, it won't be easy to new it up). In that case, at least in Windsor 2.5, you could use this:

    public static void ForceCreationOfSingletons(this IWindsorContainer container)
    {
        var singletons =
            container.Kernel.GetAssignableHandlers(typeof (object))
                     .Where(h => h.ComponentModel.LifestyleType == LifestyleType.Singleton);

        foreach (var handler in singletons)
        {
            container.Resolve(handler.ComponentModel.Service);
        }
    }

    // usage container.ForceCreationOfSingletons();
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!