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