Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Func<T> injecting with Windsor container

Here is a code excerpt from AspComet project that works with Autofac.

public MessageBus(IClientRepository clientRepository, Func<IMessagesProcessor> messagesProcessorFactoryMethod)
{
    this.clientRepository = clientRepository;
    this.messagesProcessorFactoryMethod = messagesProcessorFactoryMethod;
}

How can I inject "Func<IMessagesProcessor> messagesProcessorFactoryMethod" with Windsor, is it possible?

Thanks.

like image 901
yang Avatar asked Apr 08 '10 13:04

yang


2 Answers

Container.Register(
  Component.For<IMessagesProcessor>()
           .ImplementedBy<MessagesProcessor>()
           .Lifetime.Transient,
  Component.For<Func<IMessagesProcessor>>()
           .Instance(() => Container.Resolve<IMessagesProcessor>())
)

That should do the trick

like image 88
Neil Mosafi Avatar answered Oct 14 '22 04:10

Neil Mosafi


container.Register(Component.For<Func<Foo>>().Instance(f));

Here's a passing unit test that demonstrates the concept:

[TestMethod]
public void Test2()
{
    Func<string> f = () => "Hello world";

    var container = new WindsorContainer();
    container.Register(Component.For<Func<string>>().Instance(f));

    var resolvedFunc = container.Resolve<Func<string>>();

    Assert.AreEqual("Hello world", f());
}
like image 45
Mark Seemann Avatar answered Oct 14 '22 05:10

Mark Seemann