/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit.Abstractions/Configuration/RedeliveryOptions.cs
25 строк
637 B
Chris Patterson
Fixed #3807 - added ability to configure redelivery for completed/faulted events that arrive prior to the started event
02 ноя 2022, 20:42
02 ноя 2022, 20:42
7f3e87e
Код
Авторство
О чём код?
namespace MassTransit { using System; /// <summary> /// Customize the redelivery experience /// </summary> [Flags] public enum RedeliveryOptions { None = 0, /// <summary> /// Generate a new MessageId for the redelivered message (typically to avoid /// broker deduplication logic) /// </summary> ReplaceMessageId = 1, /// <summary> /// If specified, use the message scheduler context instead of the redelivery context (only use when transport-level redelivery is not available) /// </summary> UseMessageScheduler = 2, } }