I've been using the EventAggregator from Caliburn.Micro for a few weeks now and really enjoying it. The problem I'm running into now is say my service handles 3 types of messages. If each message type requires a different dependency I'm forced to inject a minimum of 3 dependencies into my constructor just to handle messages. The only time I would want my services to handle a message is when say I need to change the state of the UI.

Ideally, I would like each handler to be its own class. However, it doesn't look like the EventAggregator provided by Caliburn.Micro creates instance of handler classes. This way if each message handler requires different dependencies then it won't bother my core services.

Is there an alternative lightweight for using the same interface that Caliburn.Micro provides IHandle<T>, or something like ConsumerOf<T>? Since all messaging will be done within the application I don't need a full fledged service bus.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I would recommend looking at MVVM Light's Messenger class.

For example, rather than

class MyMessageHandler : IHandle<Message>
{
  void Handle( Message msg )
  {
    //Do something
  }
}

You would do the following

class MyMessageHandler
{

  ctor MyMessageHandler()
  {
    Messager.Default.Register<Message>( this, Handle );
  }

  void Handle( Message msg )
  {
    //Do something
  }
}

Any class which wants to send messages simply calls something like the following

Messanger.Default.Send( new Message( ... ) );
link|improve this answer
feedback

It's up to you which class implements IHandle. You could choose to do this in separate classes (e.g. MessageType1Handler, MessageType2Handler etc.) and add it as a singleton to your DI container? If you could supply some more code (the example of your service class, and where the message is being published to/subscribed from) that would be great

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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