FunctionMetadataParser
object FunctionMetadataParser
Parser for extracting function metadata from Kotlin reflection.
Provides utilities to analyze Kotlin functions and create metadata objects that describe how message functions should be invoked.
Functions
Link copied to clipboard
Creates function metadata using a simple function accessor.
fun <P, R> KFunction<*>.toFunctionMetadata(accessorFactory: (KFunction<*>) -> FunctionAccessor<P, R>): FunctionAccessorMetadata<P, R>
Parses a Kotlin function to create function accessor metadata.
Link copied to clipboard
Creates function metadata for reactive Mono-returning functions.