mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
22 lines
644 B
C#
22 lines
644 B
C#
using System.Linq;
|
|
|
|
namespace NzbDrone.Common.Eventing
|
|
{
|
|
/// <summary>
|
|
/// Denotes a class which can handle a particular type of message.
|
|
/// </summary>
|
|
/// <typeparam name = "TEvent">The type of message to handle.</typeparam>
|
|
public interface IHandle<TEvent> : IHandle where TEvent : IEvent
|
|
{
|
|
/// <summary>
|
|
/// Handles the message.
|
|
/// </summary>
|
|
/// <param name = "message">The message.</param>
|
|
void Handle(TEvent message);
|
|
}
|
|
|
|
/// <summary>
|
|
/// A marker interface for classes that subscribe to messages.
|
|
/// </summary>
|
|
public interface IHandle { }
|
|
} |