DontCare

StageResult indicating that the stage does not care about its input.

This means that the output from the previous stage is not used by PipelineStage.execute, and may allow PipelineTransformer to perform more aggressive optimizations.

For example, a stage may use this as its input type if it is always the first stage in a pipeline.

Note: This stage can only be used as an input parameter (PipelineStage.inType).

Functions

Link copied to clipboard
open override fun asAnyResult(): StageResult.Any

Converts this into a StageResult.Any instance.

Link copied to clipboard

Casts this into the stage result type of OutT, or throws IllegalArgumentException if the conversion is not possible.

Link copied to clipboard

Casts this into the stage result type of outClazz.