/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit/Consumers/Configuration/IConsumerConnector.cs
16 строк
621 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> /// Interface implemented by objects that tie an inbound pipeline together with /// consumers (by means of calling a consumer factory). /// </summary> public interface IConsumerConnector { IConsumerSpecification<TConsumer> CreateConsumerSpecification<TConsumer>() where TConsumer : class; ConnectHandle ConnectConsumer<TConsumer>(IConsumePipeConnector consumePipe, IConsumerFactory<TConsumer> consumerFactory, IConsumerSpecification<TConsumer> specification) where TConsumer : class; } }