ValueObserver

fun interface ValueObserver<T>

Observer interface for observable properties with values.

Functions

Link copied to clipboard
abstract fun update(oldValue: T, newValue: T)

Can be implemented to react on changes to the observed property.