Class BaseObservable<T, TChange>Abstract

Represents an observable value.

Type Parameters

  • T

    The type of values the observable can hold.

  • TChange = void

    Describes how or why the observable changed. While observers might miss intermediate values of an observable, they will receive all change notifications as long as they are subscribed.

Hierarchy (view full)

Constructors

Properties

observers: Set<Observer> = ...

Methods