Class FluxFunction<I,O>

java.lang.Object
org.springframework.cloud.function.core.WrappedFunction<I,O,reactor.core.publisher.Flux<I>,reactor.core.publisher.Flux<O>,Function<I,O>>
org.springframework.cloud.function.core.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 Details

    • FluxFunction

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

    • apply

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