Interface Handles<TCommand>
Represents a command handler of a specific type of command.
Namespace: IRM.Messaging
Assembly: IRM.dll
Syntax
public interface Handles<in TCommand>
Type Parameters
TCommand
The type of command to handle. |
Methods
Handle(TCommand)
Called with the command to handle.
Declaration
void Handle(TCommand command)
Parameters
TCommand
command
The command to process. |