Class FlatMapIterableStageFactory
java.lang.Object
io.smallrye.mutiny.streams.stages.FlatMapIterableStageFactory
- All Implemented Interfaces:
ProcessingStageFactory<org.eclipse.microprofile.reactive.streams.operators.spi.Stage.FlatMapIterable>
public class FlatMapIterableStageFactory
extends Object
implements ProcessingStageFactory<org.eclipse.microprofile.reactive.streams.operators.spi.Stage.FlatMapIterable>
- Author:
- Clement Escoffier
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<I,O> ProcessingStage <I, O> create(Engine engine, org.eclipse.microprofile.reactive.streams.operators.spi.Stage.FlatMapIterable stage) Creates the instance.
-
Constructor Details
-
FlatMapIterableStageFactory
public FlatMapIterableStageFactory()
-
-
Method Details
-
create
public <I,O> ProcessingStage<I,O> create(Engine engine, org.eclipse.microprofile.reactive.streams.operators.spi.Stage.FlatMapIterable stage) Description copied from interface:ProcessingStageFactoryCreates the instance.- Specified by:
createin interfaceProcessingStageFactory<org.eclipse.microprofile.reactive.streams.operators.spi.Stage.FlatMapIterable>- Type Parameters:
I- input dataO- output data- Parameters:
engine- the reactive enginestage- the stage- Returns:
- the created processing stage, should never be
null
-