/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit.Abstractions/ConnectHandle.cs
19 строк
557 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> /// A connect handle is returned by a non-asynchronous resource that supports /// disconnection (such as removing an observer, etc.) /// </summary> public interface ConnectHandle : IDisposable { /// <summary> /// Explicitly disconnect the handle without waiting for it to be disposed. If the /// connection is disconnected, the disconnect will be ignored when the handle is disposed. /// </summary> void Disconnect(); } }