/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/Persistence/MassTransit.MongoDbIntegration/MongoDbIntegration/MessageData/IMessageDataResolver.cs
23 строки
592 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.MongoDbIntegration.MessageData { using System; using MongoDB.Bson; public interface IMessageDataResolver { /// <summary> /// Returns the ObjectId for the specified address /// </summary> /// <param name="address"></param> /// <returns></returns> ObjectId GetObjectId(Uri address); /// <summary> /// Returns the address for the specified objectId /// </summary> /// <param name="id"></param> /// <returns></returns> Uri GetAddress(ObjectId id); } }