You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
623 B
17 lines
623 B
using NzbDrone.Common.Messaging;
|
|
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.Messaging
|
|
{
|
|
/// <summary>
|
|
/// Enables loosely-coupled publication of events.
|
|
/// </summary>
|
|
public interface IMessageAggregator
|
|
{
|
|
void PublishEvent<TEvent>(TEvent @event) where TEvent : class, IEvent;
|
|
void PublishCommand<TCommand>(TCommand command) where TCommand : Command;
|
|
void PublishCommand(string commandTypeName);
|
|
Command PublishCommandAsync<TCommand>(TCommand command) where TCommand : Command;
|
|
Command PublishCommandAsync(string commandTypeName);
|
|
}
|
|
} |