mirror of https://github.com/Radarr/Radarr
22 lines
628 B
C#
22 lines
628 B
C#
|
using System.Linq;
|
|||
|
|
|||
|
namespace NzbDrone.Common.Eventing
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Denotes a class which can handle a particular type of message.
|
|||
|
/// </summary>
|
|||
|
/// <typeparam name = "TMessage">The type of message to handle.</typeparam>
|
|||
|
public interface IHandle<TMessage> : IHandle
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Handles the message.
|
|||
|
/// </summary>
|
|||
|
/// <param name = "message">The message.</param>
|
|||
|
void Handle(TMessage message);
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// A marker interface for classes that subscribe to messages.
|
|||
|
/// </summary>
|
|||
|
public interface IHandle { }
|
|||
|
}
|