Table of contents

Extends Signal<Value, Diff>.

A computed signal created via computed.

interface Computed<Value, Diff = unknown> extends Signal<Value, Diff> {}

Properties

isActivelyListening

readonly

Whether this computed child is involved in an actively-running effect graph.

readonly isActivelyListening: boolean

lastChangedEpoch

from Signal

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

from Signal

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

from Signal

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

from Signal

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

NameDescription

epoch

number

The epoch to get diffs since.

Returns

Diff[] | RESET_VALUE

Prev
AtomOptions
Next
ComputedOptions