/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit/Configuration/Futures/FutureRequestHandle.cs
26 строк
847 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 { using System; public interface FutureRequestHandle<out TCommand, TResult, TFault, TRequest> where TCommand : class where TResult : class where TFault : class where TRequest : class { /// <summary> /// The Request Faulted event /// </summary> Event<Fault<TRequest>> Faulted { get; } /// <summary> /// Handle the response type specified, and configure the response behavior /// </summary> /// <param name="configure"></param> /// <typeparam name="T">The response type</typeparam> /// <returns></returns> FutureResponseHandle<TCommand, TResult, TFault, TRequest, T> OnResponseReceived<T>(Action<IFutureResponseConfigurator<TResult, T>> configure = null) where T : class; } }