/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit.Abstractions/Mediator/Request.cs
13 строк
386 B
Chris Patterson
Related to an old issue, #2130 - adding a Request<T> message interface to mediator, to support implicit response types
14 мар 2022, 16:58
14 мар 2022, 16:58
0165df5
Код
Авторство
О чём код?
namespace MassTransit.Mediator { /// <summary> /// A mediator interface, signaling the response type expected by a request /// </summary> /// <typeparam name="TResponse">The response type tied to the request</typeparam> [ExcludeFromTopology] [ExcludeFromImplementedTypes] public interface Request<out TResponse> where TResponse : class { } }