Theia API Documentation v1.65.0
    Preparing search index...

    Represents an observable value.

    Type Parameters

    • T

      The type of values the observable can hold.

    • E

      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 Summary)

    Index

    Constructors

    Properties

    compute: (e: undefined | E) => T
    event: Event<E>
    getUpdateScope: () => undefined | Observable.UpdateScope
    isEqual: (a: T, b: T) => boolean
    observers: Set<Observer> = ...
    subscription?: Disposable
    value?: T

    Methods