ValueEvent
Types
Link copied to clipboard
data class Add<T, TChildren>(val value: T, val addedValue: TChildren, val id: AbsolutePathFragment.Id, val path: AbsolutePath, val schema: CollectionSchema<T, TChildren>) : ValueEvent<T>
Link copied to clipboard
data class Destroy<T>(val oldValue: T, val path: AbsolutePath, val schema: Schema<T>) : ValueEvent<T>
Event that indicates that a value of type T has been destroyed.
Link copied to clipboard
Event that indicates the initialisation of a value of type T.
Link copied to clipboard
data class Remove<T, TChildren>(val value: T, val removedValue: TChildren, val id: AbsolutePathFragment.Id, val path: AbsolutePath, val schema: CollectionSchema<T, TChildren>) : ValueEvent<T>
Properties
Link copied to clipboard
Path associated with the event.
Link copied to clipboard
Value after the event occurred, as found in the form manager.