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

I'm looking for samples / best practices of Event Aggregator implementation.

Anyone help ?

share|improve this question

8 Answers

I love the Rx Event Aggregator from José F. Romaniello. The implementation is short and concise:

public interface IEventPublisher
{
    void Publish<TEvent>(TEvent sampleEvent);
    IObservable<TEvent> GetEvent<TEvent>();
}

public class EventPublisher : IEventPublisher
{
    private readonly ConcurrentDictionary<Type, object> subjects
        = new ConcurrentDictionary<Type, object>();

    public IObservable<TEvent> GetEvent<TEvent>()
    {
        var subject = (ISubject<TEvent>) subjects.GetOrAdd(
            typeof (TEvent), 
            t => new Subject<TEvent>());
        return subject.AsObservable();
    }

    public void Publish<TEvent>(TEvent sampleEvent)
    {
        object subject;
        if (subjects.TryGetValue(typeof(TEvent), out subject))
        {
            ((ISubject<TEvent>)subject).OnNext(sampleEvent);
        }
    }
}

And the usage is very simple and leverages the strength of Rx. Here's an example:

var eventPublisher = new EventPublisher();

// subscribe     
var subscription = eventPublisher.GetEvent<SampleEvent>()
    .ObserveOnDispatcher()   // get the events on the UI thread
    .Select(ev => ev.Status) // extract only the status from the events
    .Subscribe(status => Console.WriteLine(status));

// publish
eventPublisher.Publish(new SampleEvent{Status = 1});

// unsubscribe
subscription.Dispose();
share|improve this answer
1  
wow, that is the nicest event aggregator implementation I have seen. – Mark Heath Oct 17 '12 at 18:46
What if I have a multi-subscriber scenario? How should I properly un-subscribe? – Maciek Oct 23 '12 at 8:20
The Subscribe method (at the end of the observation chain) returns an IDisposable instance. To unsubscribe you simply need to call Dispose() on it. That is standard Rx stuff, but I've added it to the sample for clarity. – Omer Mor Oct 24 '12 at 12:25
1  
Each subscriber gets its own unique IDisposable instance, so a multi-subscriber scenario is supported. – Omer Mor Oct 24 '12 at 12:37

there's a nice one in the MVVM Light toolkit by Laurent Bugnion. Here's the interface

public interface IMessenger
{
    void Register<TMessage>(object recipient, Action<TMessage> action);
    void Register<TMessage>(object recipient, bool receiveDerivedMessagesToo, Action<TMessage> action);
    void Send<TMessage>(TMessage message);
    void Send<TMessage, TTarget>(TMessage message);
    void Unregister(object recipient);
    void Unregister<TMessage>(object recipient);
    void Unregister<TMessage>(object recipient, Action<TMessage> action);
}
share|improve this answer

Kazi Manzur has a very good yet simple implementation of event aggregator, check this blog post: http://weblogs.asp.net/rashid/archive/2009/03/05/use-event-aggregator-to-make-your-application-more-extensible.aspx, check Kigg project on codeplex for the full implementation

share|improve this answer

you might want to check this project http://eventaggregator.codeplex.com/

share|improve this answer

This post can help you get started:

http://www.codeproject.com/KB/silverlight/PrismTutorial_Part3.aspx

share|improve this answer

The best sample of an Event Aggregator would probably be the one from Prism. This was designed by the Patterns and Practices team as part of the Composite WPF and Silverlight Guidance.

share|improve this answer
@Reed : Does it provides ordered queuing mechanism ? – Yoann. B Feb 26 '10 at 18:45
@Yoann. B: I don't think it does out of the box, but it's interface based, and would be fairly easy to extend to include ordering. – Reed Copsey Feb 26 '10 at 18:55
1  
Jeremy Miller has some pretty good criticisms of the Prism EventAggregator – pomeroy Feb 18 '11 at 22:31

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.