ConfigureAction

fun interface ConfigureAction<T>(source)

Represents a functional interface designed to apply configurations of type T. This interface allows for standardized handling of configuration operations across various implementations or systems.

Parameters

T

The type of object that this configuration action will operate on.

Functions

Link copied to clipboard
abstract fun configure(config: T)

Configures the provided configuration object.