/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit.Abstractions/Configuration/Middleware/IPipeConfigurator.cs
21 строка
665 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 { using System.ComponentModel; using Configuration; /// <summary> /// Configures a pipe with specifications /// </summary> /// <typeparam name="TContext"></typeparam> public interface IPipeConfigurator<TContext> where TContext : class, PipeContext { /// <summary> /// Adds a pipe specification to the pipe configurator at the end of the chain /// </summary> /// <param name="specification">The pipe specification to add</param> [EditorBrowsable(EditorBrowsableState.Never)] void AddPipeSpecification(IPipeSpecification<TContext> specification); } }