Interface ICommandDispatcher
Defines a Command dispatcher that uses Fire-and-Forget/In-Only MEP.
public interface ICommandDispatcher : IDispatcher
Methods
Commit(ICommand)
Commits the specified request
using Fire-and-Forget/In-Only MEP.
void Commit(ICommand request)
Parameters
CommitAsync(ICommand, Action<AsyncOptions>)
Commits the specified request
asynchronous using Fire-and-Forget/In-Only MEP.
Task CommitAsync(ICommand request, Action<AsyncOptions> setup = null)
Parameters
request
ICommandThe ICommand to commit.
setup
Action<AsyncOptions>The AsyncOptions which may be configured.