SimpleMonoFunctionAccessor
class SimpleMonoFunctionAccessor<T, D : Any>(function: KFunction<*>) : AbstractMonoFunctionAccessor<T, Mono<D>>
Simple implementation of MonoFunctionAccessor for functions that already return Mono. This accessor defers the execution of the underlying function to ensure proper reactive stream behavior and lazy evaluation.
Parameters
function
the Kotlin function that returns a Mono
Type Parameters
T
the type of the target object
D
the type of data in the Mono