index.Subscriber
Core interface representing a reactive subscriber (e.g. an effect, computed signal, or framework bridge).
dependencies: Set<Set<Subscriber>>
Set of upstream subscriber sets storing this subscriber, allowing dynamic dependency unbinding.
Optional id: string | symbol
Optional unique identifier or symbol representing this subscriber.
Optional name: string
Optional human-readable name for debugging and telemetry.
notify: () => void
(): void
Callback invoked by the scheduler when one of the subscriber's tracked dependencies mutates.
void
Optional type: "effect" | "computed" | "adapter"
Subscriber classification category.