/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit.Abstractions/Middleware/Configuration/IBuildPipeConfigurator.cs
14 строк
412 B
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.Configuration { public interface IBuildPipeConfigurator<TContext> : IPipeConfigurator<TContext>, ISpecification where TContext : class, PipeContext { /// <summary> /// Builds the pipe, applying any initial specifications to the front of the pipe /// </summary> /// <returns></returns> IPipe<TContext> Build(); } }