/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit/Middleware/ILatestFilter.cs
18 строк
459 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.Middleware { using System.Threading.Tasks; /// <summary> /// Maintains the latest context to be passed through the filter /// </summary> /// <typeparam name="T"></typeparam> public interface ILatestFilter<T> where T : class, PipeContext { /// <summary> /// The most recently completed context to pass through the filter /// </summary> Task<T> Latest { get; } } }