Class FluxedFunction<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<reactor.core.publisher.Flux<I>,​reactor.core.publisher.Flux<O>>>

    @Deprecated
    public class FluxedFunction<I,​O>
    extends WrappedFunction<I,​O,​reactor.core.publisher.Flux<I>,​reactor.core.publisher.Flux<O>,​Function<reactor.core.publisher.Flux<I>,​reactor.core.publisher.Flux<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.
    Since:
    2.0.1
    Author:
    Oleg Zhurakousky
    • Constructor Detail

      • FluxedFunction

        public FluxedFunction​(Function<reactor.core.publisher.Flux<I>,​reactor.core.publisher.Flux<O>> target)
        Deprecated.
    • Method Detail

      • apply

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