Class FluxedConsumer<I>

java.lang.Object
org.springframework.cloud.function.core.WrappedFunction<I,Void,reactor.core.publisher.Flux<I>,reactor.core.publisher.Mono<Void>,Consumer<reactor.core.publisher.Flux<I>>>
org.springframework.cloud.function.core.FluxedConsumer<I>
Type Parameters:
I - input type of target consumer
All Implemented Interfaces:
Function<reactor.core.publisher.Flux<I>,reactor.core.publisher.Mono<Void>>, FluxWrapper<Consumer<reactor.core.publisher.Flux<I>>>

@Deprecated public class FluxedConsumer<I> extends WrappedFunction<I,Void,reactor.core.publisher.Flux<I>,reactor.core.publisher.Mono<Void>,Consumer<reactor.core.publisher.Flux<I>>>
Deprecated.
since 3.1 no longer used by the framework
Wrapper for a Consumer implementation that converts a reactive consumer into a reactive function (Function<Flux<?>, Mono<?>>). This is primarily done for consistent representation of reactive and non-reactive consumers.
Since:
2.0.1
Author:
Oleg Zhurakousky
See Also:
  • Constructor Details

    • FluxedConsumer

      public FluxedConsumer(Consumer<reactor.core.publisher.Flux<I>> target)
      Deprecated.
  • Method Details

    • apply

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