namespace NzbDrone.Common.Messaging { /// /// Enables loosely-coupled publication of events. /// public interface IMessageAggregator { void Publish(TEvent message) where TEvent : IEvent; void Execute(TCommand message) where TCommand : ICommand; } }