Radarr/NzbDrone.Common/Eventing/IEventAggregator.cs

13 lines
265 B
C#
Raw Normal View History

using System;
using System.Linq;
namespace NzbDrone.Common.Eventing
{
/// <summary>
2013-02-23 20:09:44 +00:00
/// Enables loosely-coupled publication of events.
/// </summary>
public interface IEventAggregator
{
2013-02-23 20:09:44 +00:00
void Publish<TEvent>(TEvent message);
}
}