Interface IRegistrationCatalogue
Retrieve information about command and handler registrations
Namespace: AzureFromTheTrenches.Commanding.Abstractions
Assembly: AzureFromTheTrenches.Commanding.Abstractions.dll
Syntax
public interface IRegistrationCatalogue
Methods
| Improve this Doc View SourceGetRegisteredCommands()
Returns a set of all the registered commands
Declaration
IReadOnlyCollection<Type> GetRegisteredCommands()
Returns
Type | Description |
---|---|
IReadOnlyCollection<Type> | A set of command types |
GetRegisteredDispatcherFactories()
Returns a set of all the registered command dispatcher factories
Declaration
IReadOnlyCollection<Func<ICommandDispatcher>> GetRegisteredDispatcherFactories()
Returns
Type | Description |
---|---|
IReadOnlyCollection<Func<ICommandDispatcher>> | A set of dispatcher factories |
GetRegisteredHandlers()
Returns a set of all the registered command handlers
Declaration
IReadOnlyCollection<Type> GetRegisteredHandlers()
Returns
Type | Description |
---|---|
IReadOnlyCollection<Type> | Registrered command handlers |