IReceiver<TRequest> Interface
Definition
Defines a consumer/receiver channel used by subsystems to receive a command and perform one or more actions (e.g., change the state).
public interface IReceiver<out TRequest> where TRequest : IRequest
Type Parameters
TRequestThe type of the model to invoke on a handler.
Methods
| Name | Description |
|---|---|
| ReceiveAsync(Action<AsyncOptions>) | Receive one or more message(s) asynchronous using Point-to-Point Channel/P2P MEP. |