Uses of Interface
org.eclipse.microprofile.reactive.streams.operators.TransformingOperators
Packages that use TransformingOperators
Package
Description
MicroProfile Reactive Streams Operators.
-
Uses of TransformingOperators in org.eclipse.microprofile.reactive.streams.operators
Subinterfaces of TransformingOperators in org.eclipse.microprofile.reactive.streams.operatorsModifier and TypeInterfaceDescriptioninterfaceProcessorBuilder<T,R> A builder for aProcessor.interfaceA builder for aPublisher.Methods in org.eclipse.microprofile.reactive.streams.operators that return TransformingOperatorsModifier and TypeMethodDescription<S> TransformingOperators<S>TransformingOperators.flatMap(Function<? super T, ? extends PublisherBuilder<? extends S>> mapper) Map the elements to publishers, and flatten so that the elements emitted by publishers produced by themapperfunction are emitted from this stream.<S> TransformingOperators<S>TransformingOperators.flatMapCompletionStage(Function<? super T, ? extends CompletionStage<? extends S>> mapper) Map the elements toCompletionStage, and flatten so that the elements the values redeemed by eachCompletionStageare emitted from this stream.<S> TransformingOperators<S>TransformingOperators.flatMapIterable(Function<? super T, ? extends Iterable<? extends S>> mapper) Map the elements toIterable's, and flatten so that the elements contained in each iterable are emitted by this stream.<S> TransformingOperators<S>TransformingOperators.flatMapRsPublisher(Function<? super T, ? extends org.reactivestreams.Publisher<? extends S>> mapper) Map the elements to publishers, and flatten so that the elements emitted by publishers produced by themapperfunction are emitted from this stream.<R> TransformingOperators<R>Map the elements emitted by this stream using themapperfunction.