/
vshmidt
/
masstransit
Обзор
Документация
Войти
/
vshmidt
/
masstransit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/MassTransit.Abstractions/Internals/IMessageTypeCache.cs
42 строки
1 KB
Chris Patterson
Huge push towards optimization on startup, state machines, type discovery, caching, and the consume pipeline. Rebuilt the dispatch filter as a consume context filter for message type dispatch.
27 мар 2024, 02:43
27 мар 2024, 02:43
c17b1de
Код
Авторство
О чём код?
namespace MassTransit.Internals { using System; using System.Collections.Generic; using System.Reflection; interface IMessageTypeCache { /// <summary> /// The friendly diagnostic address for display in metrics applications /// </summary> string DiagnosticAddress { get; } /// <summary> /// True if the message type is a valid message type /// </summary> bool IsValidMessageType { get; } /// <summary> /// Once checked, the reason why the message type is invalid /// </summary> string? InvalidMessageTypeReason { get; } /// <summary> /// True if this message is not a public type /// </summary> bool IsTemporaryMessageType { get; } /// <summary> /// Returns all valid message types that are contained within the s /// </summary> Type[] MessageTypes { get; } /// <summary> /// The names of all the message types supported by the message type /// </summary> string[] MessageTypeNames { get; } IEnumerable<PropertyInfo> Properties { get; } } }