1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-19 07:52:33 +02:00
Radarr/NzbDrone.Common/Messaging/IMessageAggregator.cs

12 lines
407 B
C#
Raw Normal View History

namespace NzbDrone.Common.Messaging
{
/// <summary>
2013-02-23 21:09:44 +01:00
/// Enables loosely-coupled publication of events.
/// </summary>
public interface IMessageAggregator
{
2013-05-13 04:52:55 +02:00
void PublishEvent<TEvent>(TEvent @event) where TEvent : class, IEvent;
void PublishCommand<TCommand>(TCommand command) where TCommand : class, ICommand;
void PublishCommand(string commandType);
}
}