/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/Transports/MassTransit.Azure.ServiceBus.Core/Configuration/IServiceBusQueueConfigurator.cs
27 строк
794 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 Azure.Messaging.ServiceBus.Administration; public interface IServiceBusQueueConfigurator : IServiceBusMessageEntityConfigurator, IServiceBusEndpointEntityConfigurator, ISpecification { /// <summary> /// Move messages to the dead letter queue on filter evaluation exception /// </summary> bool? EnableDeadLetteringOnFilterEvaluationExceptions { set; } /// <summary> /// Sets the path where messages are forwarded to /// </summary> string ForwardTo { set; } /// <summary> /// Create the CreateQueueOptions for the configuration /// </summary> /// <returns></returns> CreateQueueOptions GetCreateQueueOptions(); } }