ReactiveFunctionAccessor

interface ReactiveFunctionAccessor<T, out R : Publisher<*>> : FunctionAccessor<T, R>

Interface for accessing reactive functions that return Publisher-based types. Extends FunctionAccessor to provide reactive stream support for functions that return reactive types like Flux, Mono, or other Publisher implementations.

Type Parameters

T

the type of the target object

R

the reactive return type that extends Publisher

Inheritors