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