1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Common/Messaging/IMessageAggregator.cs

11 lines
343 B
C#
Raw Normal View History

namespace NzbDrone.Common.Messaging
{
/// <summary>
2013-02-23 23:09:44 +03:00
/// Enables loosely-coupled publication of events.
/// </summary>
public interface IMessageAggregator
{
void PublishEvent<TEvent>(TEvent @event) where TEvent : IEvent;
void PublishCommand<TCommand>(TCommand command) where TCommand : ICommand;
}
}