package
Version:
v1.15.2
Opens a new window with list of versions in this module.
Published: Jul 9, 2026
License: Apache-2.0
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Property interface {
Value() any
Update(any)
Observe() Stream
}
Property stores a value and allows observers to subscribe to updates.
NewProperty creates a property with the provided initial value.
type Stream interface {
Value() any
Changes() chan struct{}
Next() any
WaitNext() any
HasNext() bool
Clone() Stream
}
Stream observes updates to a Property.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.