Init

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

Event that indicates the initialisation of a value of type T.

Constructors

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

Properties

Link copied to clipboard
open override val oldValue: Nothing? = null

Value before the event occurred.

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

Initialised value.

Functions

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