BuilderChainAction

A functional interface representing an action that can be performed on a builder in a chainable manner. It defines a transformation from one builder type to another, allowing the construction process to be extended or modified incrementally.

Parameters

Builder

The type of the input builder that will be configured.

ResultingBuilder

The type of the resulting builder produced after configuration.

Functions

Link copied to clipboard
abstract fun configure(builder: Builder): ResultingBuilder

Configures the current builder with the specified configuration settings.