Interface ICommandHandlerFactory
Creates command handlers given their type
Namespace: AzureFromTheTrenches.Commanding.Abstractions
Assembly: AzureFromTheTrenches.Commanding.Abstractions.dll
Syntax
public interface ICommandHandlerFactory
Methods
| Improve this Doc View SourceCreate(Type)
Creates a command handler of the given type
Declaration
object Create(Type type)
Parameters
Type | Name | Description |
---|---|---|
Type | type | The type of the handler |
Returns
Type | Description |
---|---|
System.Object | A newly created command handler |