/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit.Abstractions/SagaStateMachine/DestinationAddressProvider.cs
24 строки
819 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; /// <summary> /// Returns the address for the message provided /// </summary> /// <typeparam name="TSaga">The saga instance</typeparam> /// <typeparam name="TMessage">The message data</typeparam> /// <returns></returns> public delegate Uri DestinationAddressProvider<TSaga, in TMessage>(BehaviorContext<TSaga, TMessage> context) where TSaga : class, SagaStateMachineInstance where TMessage : class; /// <summary> /// Returns the address for the message provided /// </summary> /// <typeparam name="TSaga">The saga instance</typeparam> /// <returns></returns> public delegate Uri DestinationAddressProvider<TSaga>(BehaviorContext<TSaga> context) where TSaga : class, SagaStateMachineInstance; }