MutableBoundKernelParameter
class MutableBoundKernelParameter<T : Any>(parameter: KernelParameter<T>, val valueUpdater: (T?) -> Unit, val valueProvider: () -> T?) : BoundKernelParameter<T>
Class that extends BoundKernelParameter with the ability to update the parameter value. This allows for both parsing and serializing parameter values.
Parameters
T
The type of value that this parameter represents