Show / Hide Table of Contents

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 Source

GetRegisteredCommands()

Returns a set of all the registered commands

Declaration
IReadOnlyCollection<Type> GetRegisteredCommands()
Returns
Type Description
IReadOnlyCollection<Type>

A set of command types

| Improve this Doc View Source

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

| Improve this Doc View Source

GetRegisteredHandlers()

Returns a set of all the registered command handlers

Declaration
IReadOnlyCollection<Type> GetRegisteredHandlers()
Returns
Type Description
IReadOnlyCollection<Type>

Registrered command handlers

  • Improve this Doc
  • View Source
  • 0 Comments
Back to top Copyright © 2018 James Randall