Class FromIterableStageFactory
- java.lang.Object
-
- io.smallrye.mutiny.jakarta.streams.stages.FromIterableStageFactory
-
- All Implemented Interfaces:
PublisherStageFactory<org.eclipse.microprofile.reactive.streams.operators.spi.Stage.Of>
public class FromIterableStageFactory extends java.lang.Object implements PublisherStageFactory<org.eclipse.microprofile.reactive.streams.operators.spi.Stage.Of>
Implementation of theStage.Ofstage.- Author:
- Clement Escoffier
-
-
Constructor Summary
Constructors Constructor Description FromIterableStageFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <O> PublisherStage<O>create(Engine engine, org.eclipse.microprofile.reactive.streams.operators.spi.Stage.Of stage)Creates the instance.
-
-
-
Method Detail
-
create
public <O> PublisherStage<O> create(Engine engine, org.eclipse.microprofile.reactive.streams.operators.spi.Stage.Of stage)
Description copied from interface:PublisherStageFactoryCreates the instance.- Specified by:
createin interfacePublisherStageFactory<org.eclipse.microprofile.reactive.streams.operators.spi.Stage.Of>- Type Parameters:
O- output data- Parameters:
engine- the reactive enginestage- the stage- Returns:
- the created processing stage, should never be
null
-
-