/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit/Futures/InitializerValueProvider.cs
17 строк
737 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 { /// <summary> /// Given the event context and request, returns an object used to complete the initialization of the object type /// </summary> /// <param name="context"></param> /// <typeparam name="TMessage">The data type included in the context</typeparam> public delegate object InitializerValueProvider<in TMessage>(BehaviorContext<FutureState, TMessage> context) where TMessage : class; /// <summary> /// Given the event context and request, returns an object used to complete the initialization of the object type /// </summary> /// <param name="context"></param> public delegate object InitializerValueProvider(BehaviorContext<FutureState> context); }