ProcessorMetadataParser
open class ProcessorMetadataParser<E : MessageExchange<*, *>>(functionCondition: (KFunction<*>) -> Boolean = { true }) : CacheableMetadataParser
Parser for extracting processor metadata from classes.
This parser visits class functions and creates metadata describing message processors and their handler functions.
Parameters
E
The message exchange type
See also
Inheritors
Functions
Link copied to clipboard
Parses metadata for the given class type, utilizing caching to avoid redundant parsing operations. If metadata for the class has already been parsed and cached, returns the cached instance. Otherwise, parses the metadata using parseToMetadata and stores it in the cache.
Link copied to clipboard