Class FluxFunction<I,​O>

  • Type Parameters:
    I - input type of target function
    O - output type of target function
    All Implemented Interfaces:
    Function<reactor.core.publisher.Flux<I>,​reactor.core.publisher.Flux<O>>, FluxWrapper<Function<I,​O>>

    @Deprecated
    public class FluxFunction<I,​O>
    extends WrappedFunction<I,​O,​reactor.core.publisher.Flux<I>,​reactor.core.publisher.Flux<O>,​Function<I,​O>>
    Deprecated.
    since 3.1 no longer used by the framework
    Function implementation that wraps a target Function so that the target's simple input and output types will be wrapped as Flux instances.
    Author:
    Mark Fisher, Oleg Zhurakousky
    • Constructor Detail

      • FluxFunction

        public FluxFunction​(Function<I,​O> target)
        Deprecated.
    • Method Detail

      • apply

        public reactor.core.publisher.Flux<O> apply​(reactor.core.publisher.Flux<I> input)
        Deprecated.