/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit.Abstractions/Middleware/IPipe.cs
17 строк
508 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.Threading.Tasks; public interface IPipe<in TContext> : IProbeSite where TContext : class, PipeContext { /// <summary> /// The base primitive, Send delivers the pipe context of T to the pipe. /// </summary> /// <param name="context">The pipe context of type T</param> /// <returns>A task which is completed once the pipe has processed the context</returns> Task Send(TContext context); } }