PostRenderingStage
Pipeline stage responsible for post-processing the rendered output.
This stage takes a CharSequence (produced by the RenderingStage) as input and produces a CharSequence as output, wrapping the rendered content into a template using a PostRenderer.
Properties
Functions
Link copied to clipboard
Executes this pipeline stage with the given input and shared data.
Link copied to clipboard
Utility function to execute a pipeline stage that takes Unit as input.
Link copied to clipboard
Invokes the hook function for this stage, if one is defined.
Link copied to clipboard
Link copied to clipboard
Chains two pipeline stages together to form a new pipeline stage.
Link copied to clipboard
infix fun <A, B> PipelineStage<A, B>.thenOptionally(next: PipelineStage<B, B>?): PipelineStage<A, B>
Conditionally chains this pipeline stage with next if it is not null.