/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit.Abstractions/Middleware/Configuration/IPipeSpecification.cs
18 строк
634 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 { /// <summary> /// Configures a pipe builder (typically by adding filters), but allows late binding to the /// pipe builder with pre-validation that the operations will succeed. /// </summary> /// <typeparam name="TContext"></typeparam> public interface IPipeSpecification<TContext> : ISpecification where TContext : class, PipeContext { /// <summary> /// Apply the specification to the builder /// </summary> /// <param name="builder">The pipe builder</param> void Apply(IPipeBuilder<TContext> builder); } }