mirror of
https://github.com/Readarr/Readarr
synced 2026-01-16 04:23:26 +01:00
10 lines
No EOL
382 B
C#
10 lines
No EOL
382 B
C#
namespace NzbDrone.Core.Messaging.Commands
|
|
{
|
|
public interface ICommandExecutor
|
|
{
|
|
void PublishCommand<TCommand>(TCommand command) where TCommand : Command;
|
|
void PublishCommand(string commandTypeName);
|
|
Command PublishCommandAsync<TCommand>(TCommand command) where TCommand : Command;
|
|
Command PublishCommandAsync(string commandTypeName);
|
|
}
|
|
} |