/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit/Middleware/IDynamicRouter.cs
28 строк
1 KB
Chris Patterson
Integration of all external packages into MassTransit, split out into Abstractions, Middleware, and the core MassTransit assembly.
22 янв 2022, 18:24
22 янв 2022, 18:24
b5b4f50
Код
Авторство
О чём код?
namespace MassTransit.Middleware { /// <summary> /// A dynamic router is a pipe on which additional pipes can be connected and context is /// routed through the pipe based upon the output requirements of the connected pipes. It is built /// around the dynamic filter, which is the central point of the router. /// </summary> public interface IDynamicRouter<in TContext> : IPipe<TContext>, IPipeConnector, IFilterObserverConnector where TContext : class, PipeContext { } /// <summary> /// A dynamic router is a pipe on which additional pipes can be connected and context is /// routed through the pipe based upon the output requirements of the connected pipes. It is built /// around the dynamic filter, which is the central point of the router. /// </summary> public interface IDynamicRouter<in TContext, in TKey> : IDynamicRouter<TContext>, IKeyPipeConnector<TKey> where TContext : class, PipeContext { } }