2013-04-24 01:56:00 +00:00
|
|
|
|
namespace NzbDrone.Common.Messaging
|
2013-02-19 02:37:16 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2013-02-23 20:09:44 +00:00
|
|
|
|
/// Enables loosely-coupled publication of events.
|
2013-02-19 02:37:16 +00:00
|
|
|
|
/// </summary>
|
2013-04-24 01:56:00 +00:00
|
|
|
|
public interface IMessageAggregator
|
2013-02-19 02:37:16 +00:00
|
|
|
|
{
|
2013-02-24 19:18:48 +00:00
|
|
|
|
void Publish<TEvent>(TEvent message) where TEvent : IEvent;
|
2013-04-24 01:56:00 +00:00
|
|
|
|
void Execute<TCommand>(TCommand message) where TCommand : ICommand;
|
2013-02-19 02:37:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|