Change

data class Change<T>(val oldValue: T, val value: T, val path: AbsolutePath, val schema: Schema<T>) : ValueEvent<T> (source)

Event that indicates that a certain value of type T has changed.

Constructors

Link copied to clipboard
constructor(oldValue: T, value: T, path: AbsolutePath, schema: Schema<T>)

Properties

Link copied to clipboard
open override val oldValue: T

Old form manager value.

Link copied to clipboard
open override val path: AbsolutePath

Path associated with the event.

Link copied to clipboard
open override val schema: Schema<T>

Schema of the value associated with the event.

Link copied to clipboard
open override val value: T

Value after the change, as found in the form manager.

Functions

Link copied to clipboard
open override fun toString(): String