/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit/Middleware/OutboxSendContext.cs
16 строк
324 B
Chris Patterson
Fixed #4070 - Transactional Outbox now properly shares the consume scope with send/publish so that scoped filters run in the same container scope as the consumer transaction.
01 фев 2023, 21:52
01 фев 2023, 21:52
dbbd0a3
Код
Авторство
О чём код?
namespace MassTransit.Middleware { using System; using System.Threading.Tasks; /// <summary> /// Used by the new outbox construct /// </summary> public interface OutboxSendContext : IServiceProvider { Task AddSend<T>(SendContext<T> context) where T : class; } }