Interface ICommandCorrelationIdProvider
Implementations of this interface will generate correlation IDs for use across the command system - used to group commands together including nested commands (a command is fired that invokes a handler that fires another command etc.)
Namespace: AzureFromTheTrenches.Commanding.Abstractions
Assembly: AzureFromTheTrenches.Commanding.Abstractions.dll
Syntax
public interface ICommandCorrelationIdProvider
Methods
| Improve this Doc View SourceCreate()
Create a correlation ID. Performance critical as will be called on every command dispatch.
Declaration
string Create()
Returns
Type | Description |
---|---|
System.String | A correlation ID |