Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Ninject's bbEventBroker extension to wire up some pub/sub in my application. I have business services which publish events, and then I have other classes which subscribe to events. The wiring with Ninject is working, with one problem. I don't see an obvious place where I should instantiate the event subscribers. Right now I am hacking it is, and just making sure all of the subscribers are requested into the kernel as singletons before anyone else uses it. But this doesn't seem right. If I do nothing, then there are no instances of the subscribers, and the events end up getting ignored.

How should I instantiate the subscribers to bbEventBroker events so that they end up wired into the kernel?

share|improve this question

2 Answers

The bbvEventBroker assumes that your subscriber is already instantiated and registered on the EventBroker. You might want to look at Ninject.Extensions.DependencyCreation as a means of managing your subscriber's lifecycle. I've successfully used this in an MVP application, to ensure that all my presenters (i.e., bbvEventBroker subscribers) where instantiated when the application starts.

share|improve this answer
Thanks. I will take a look at DependencyCreation. – RationalGeek Jan 28 at 21:35
By the way we recently renamed bbv.common to appccelerate. You might also look at appccelerate.com unfortunately we haven't had time to create a new ninject extension – Daniel Marbach Jan 29 at 6:22
@RiiCon this didn't end up working as I'd hoped. I have circular dependencies where the subscribers need the publishers. Once I set up dependencies with DependencyCreation, Ninject started choking with StackOverflowExceptions. – RationalGeek Jan 30 at 14:47
up vote 0 down vote accepted

I ended up creating some pretty hacky code to solve this, but it does work. In my Ninject module which wires up the event subscribers, I also add an OnActivation handler for IEventBroker. When that activation handler is called, I do a Get on the Kernel for each subscriber (by using reflection to find the right types). This ensures that an instance of each subscriber is wired into the broker.

This leads to an issue where, for some reason, IEventBrokers can be activated while Ninject is trying to dispose. So, I had to override OnDispose on my module and set a flag to stop doing the above once dispose has started. Hacks upon hacks! :-)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.