Computed
See source codeTable of contents
Extends Signal<Value, Diff>
.
A computed signal created via computed
.
interface Computed<Value, Diff = unknown> extends Signal<Value, Diff> {}
Properties
isActivelyListening
Whether this computed child is involved in an actively-running effect graph.
readonly isActivelyListening: boolean
lastChangedEpoch
The epoch when this signal's value last changed. Note that this is not the same as when the value was last computed. A signal may recompute it's value without changing it.
lastChangedEpoch: number
name
The name of the signal. This is used at runtime for debugging and perf profiling only. It does not need to be globally unique.
name: string
Methods
get
The current value of the signal. This is a reactive value, and will update when the signal changes. Any computed signal that depends on this signal will be lazily recomputed if this signal changes. Any effect that depends on this signal will be rescheduled if this signal changes.
getDiffSince
Returns the sequence of diffs between the the value at the given epoch and the current value.
Returns the RESET_VALUE
constant if there is not enough information to compute the diff sequence.
Parameters
Name | Description |
---|---|
|
The epoch to get diffs since. |
Returns
Diff[] | RESET_VALUE