/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/Transports/MassTransit.EventHubIntegration/EventHubIntegration/Configuration/IEventHubHostConfiguration.cs
19 строк
645 B
denys.kozhevnikov
Refactoring rider producers
17 янв 2023, 01:42
17 янв 2023, 01:42
87e646a
Код
Авторство
О чём код?
namespace MassTransit.EventHubIntegration.Configuration { using System; using Transports; public interface IEventHubHostConfiguration : ISpecification { IConnectionContextSupervisor ConnectionContextSupervisor { get; } EventHubSendTransportContext CreateSendTransportContext(string eventHubName, IBusInstance busInstance); IEventHubReceiveEndpointSpecification CreateSpecification(string eventHubName, string consumerGroup, Action<IEventHubReceiveEndpointConfigurator> configure); IEventHubRider Build(IRiderRegistrationContext context, IBusInstance busInstance); } }