/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit/Middleware/OutboxConsumeOptions.cs
28 строк
768 B
Chris Patterson
Fixed #3791 - Again, but this time with a new lock update strategy to ensure the InboxState is truly locked, avoiding inconsistency and duplicate messages on the broker.
01 ноя 2022, 18:01
01 ноя 2022, 18:01
85afbda
Код
Авторство
О чём код?
namespace MassTransit.Middleware { using System; public class OutboxConsumeOptions { /// <summary> /// The generated identifier for the consumer based upon endpoint name /// </summary> public Guid ConsumerId { get; set; } /// <summary> /// The display name of the consumer type /// </summary> public string ConsumerType { get; set; } /// <summary> /// The number of message to deliver at a time from the outbox /// </summary> public int MessageDeliveryLimit { get; set; } /// <summary> /// The time to wait when delivering a message to the broker /// </summary> public TimeSpan MessageDeliveryTimeout { get; set; } } }