PeekPipelineStage
A specialized pipeline stage that "peeks" at the input without modifying it.
This interface is useful for stages that need to perform some operation on the input (such as validation, logging, or side effects) but don't need to transform it into a different object.
The process method is implemented to call peek and then return the input unchanged.
Type Parameters
the type of both the input and output
Inheritors
Properties
Functions
Executes this pipeline stage with the given input and shared data.
Utility function to execute a pipeline stage that takes Unit as input.
Invokes the hook function for this stage, if one is defined.
Peeks at the input without modifying it.
Chains two pipeline stages together to form a new pipeline stage.
Conditionally chains this pipeline stage with next if it is not null.