/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit/Courier/IRoutingSlipSendEndpointTarget.cs
20 строк
844 B
Chris Patterson
Massive file cleanup
27 мар 2024, 02:43
27 мар 2024, 02:43
2ac69e8
Код
Авторство
О чём код?
namespace MassTransit.Courier { using System; using Contracts; using Serialization; public interface IRoutingSlipSendEndpointTarget { /// <summary> /// Adds a custom subscription message to the routing slip which is sent at the specified events /// </summary> /// <param name="address">The destination address where the events are sent</param> /// <param name="events">The events to include in the subscription</param> /// <param name="contents">The contents of the routing slip event</param> /// <param name="activityName"></param> /// <param name="message">The custom message to be sent</param> void AddSubscription(Uri address, RoutingSlipEvents events, RoutingSlipEventContents contents, string activityName, MessageEnvelope message); } }