/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit/Configuration/IOutboxConfigurator.cs
11 строк
415 B
Chris Patterson
Support for #1948 - ability to deliver pending messages concurrently from the outbox
09 июл 2020, 22:23
09 июл 2020, 22:23
7b07a99
Код
Авторство
О чём код?
namespace MassTransit { public interface IOutboxConfigurator { /// <summary> /// Set to true if messages can be delivered to the broker concurrently. Concurrent delivery is faster, but does not match the order of the /// original publish/respond/send calls. Defaults to false to match existing behavior. /// </summary> bool ConcurrentMessageDelivery { set; } } }