SimpleMonoFunctionAccessor
data class SimpleMonoFunctionAccessor<T, D>(val function: KFunction<*>) : MonoFunctionAccessor<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
T
the type of the target object
D
the type of data in the Mono