Interface IRequestReplyHandler<TRequest>
- Namespace
- Savvyio.Handlers
- Assembly
- Savvyio.Core.dll
Defines a generic Request-Reply/In-Out MEP handler.
public interface IRequestReplyHandler<TRequest> : IHandler<TRequest>, IHandler where TRequest : IRequest
Type Parameters
TRequest
The type of the model to handle.
Properties
Delegates
Gets the IRequestReplyActivator<TRequest> responsible of invoking delegates that handles the TRequest
model.
IRequestReplyActivator<TRequest> Delegates { get; }
Property Value
- IRequestReplyActivator<TRequest>
The IRequestReplyActivator<TRequest> responsible of invoking delegates of type
TRequest
.
See Also
IHandler<TRequest>