![]() |
CQRS.NET
4.0
A lightweight enterprise Function as a Service (FaaS) framework to write function based serverless and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments.
|
Sends an ICommand<TAuthenticationToken> More...
Public Member Functions | |
TEvent | SendAndWait< TCommand, TEvent > (TCommand command, IEventReceiver< TAuthenticationToken > eventReceiver=null) |
Sends the provided command and waits for an event of TEvent More... | |
TEvent | SendAndWait< TCommand, TEvent > (TCommand command, int millisecondsTimeout, IEventReceiver< TAuthenticationToken > eventReceiver=null) |
Sends the provided command and waits for an event of TEvent or exits if the specified timeout is expired. More... | |
TEvent | SendAndWait< TCommand, TEvent > (TCommand command, TimeSpan timeout, IEventReceiver< TAuthenticationToken > eventReceiver=null) |
Sends the provided command and waits for an event of TEvent or exits if the specified timeout is expired. More... | |
TEvent | SendAndWait< TCommand, TEvent > (TCommand command, Func< IEnumerable< IEvent< TAuthenticationToken >>, TEvent > condition, IEventReceiver< TAuthenticationToken > eventReceiver=null) |
Sends the provided command and waits until the specified condition is satisfied an event of TEvent More... | |
TEvent | SendAndWait< TCommand, TEvent > (TCommand command, Func< IEnumerable< IEvent< TAuthenticationToken >>, TEvent > condition, int millisecondsTimeout, IEventReceiver< TAuthenticationToken > eventReceiver=null) |
Sends the provided command and waits for an event of TEvent or exits if the specified timeout is expired. More... | |
TEvent | SendAndWait< TCommand, TEvent > (TCommand command, Func< IEnumerable< IEvent< TAuthenticationToken >>, TEvent > condition, TimeSpan timeout, IEventReceiver< TAuthenticationToken > eventReceiver=null) |
Sends the provided command and waits for an event of TEvent or exits if the specified timeout is expired. More... | |
![]() | |
void | Publish< TCommand > (TCommand command) |
Publishes the provided command on the command bus. More... | |
void | Publish< TCommand > (IEnumerable< TCommand > commands) |
Publishes the provided commands on the command bus. More... | |
Sends an ICommand<TAuthenticationToken>
TAuthenticationToken | The Type of the authentication token. |