corda / net.corda.core.utilities / VariablePropertyDelegate

VariablePropertyDelegate

interface VariablePropertyDelegate<T> : PropertyDelegate<T>

Simple interface encapsulating the implicit Kotlin contract for mutable property delegates.

Functions

setValue

Invoked as part of Kotlin delegated properties construct.

abstract operator fun setValue(thisRef: Any?, property: KProperty<*>, value: T): Unit