/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit/Transports/IMessagePartitionKeyFormatter.cs
8 строк
210 B
Chris Patterson
Standardized the topology for partition key across service bus, event hub, and the SQL transport
25 апр 2024, 21:50
25 апр 2024, 21:50
e7c59ea
Код
Авторство
О чём код?
namespace MassTransit.Transports { public interface IMessagePartitionKeyFormatter<in TMessage> where TMessage : class { string FormatPartitionKey(SendContext<TMessage> context); } }