IRequestReplyRegistry<TRequest> Interface
Definition
- Assemblies
- Savvyio.Core.dll
Specifies a Request-Reply/In-Out MEP registry that store delegates responsible for handling type TRequest.
public interface IRequestReplyRegistry<in TRequest>
Type Parameters
TRequestThe type of the model to store in the registry.
Methods
| Name | Description |
|---|---|
| RegisterAsync<T, TResponse>(Func<T, CancellationToken, Task<TResponse>>) | Registers the specified function delegate |
| Register<T, TResponse>(Func<T, TResponse>) | Registers the specified function delegate |
See Also
IRequestReplyActivator<TRequest>