Table of Contents

IReceiver<TRequest> Interface

Definition

Namespace
Savvyio.Messaging
Assemblies
Savvyio.Core.dll
Source
src/Savvyio.Core/Messaging/IReceiver.cs

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

TRequest

The 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.